last profile fixes

This commit is contained in:
Lars Brubaker 2020-08-13 17:51:51 -07:00
parent 080a44813b
commit 7494594751
2 changed files with 5 additions and 4 deletions

View file

@ -411,8 +411,9 @@ namespace MatterControl.Tests.MatterControl
var supportMaterialExtruder = settings.GetValue<int>(SettingsKey.support_material_extruder);
var extruderCount = settings.GetValue<int>(SettingsKey.extruder_count);
// the support extruder should be 0 unless you are on a material setting
if (supportMaterialExtruder == 0
|| (settingsType == SettingsType.Material && extruderCount > 1))
if (supportMaterialExtruder <= 0
|| (settingsType == SettingsType.Material && extruderCount > 1)
|| (settingsType == SettingsType.Quality && extruderCount > 1))
{
// this is a valid printer profile
}