last profile fixes
This commit is contained in:
parent
080a44813b
commit
7494594751
2 changed files with 5 additions and 4 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue