Remove hard-coded Enabled value

- Issue MatterHackers/MCCentral#5369
Pulse S-232 doing xy calibration even though it is not dual and the
option not showing
This commit is contained in:
jlewin 2019-04-22 11:26:50 -07:00
parent 3e187a7f4e
commit e25c7179f0

View file

@ -71,7 +71,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
public override bool Visible => printer.Settings.GetValue<int>(SettingsKey.extruder_count) > 1;
public override bool Enabled => true;
public override bool Enabled => printer.Settings.GetValue<int>(SettingsKey.extruder_count) > 1;
public static bool NeedsToBeRun(PrinterConfig printer)
{