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:
parent
3e187a7f4e
commit
e25c7179f0
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue