Only require probe calibration if doing leveling

issue: MatterHackers/MCCentral#4351
Probe calibration is required even when software print leveling is turned off
This commit is contained in:
Lars Brubaker 2018-10-23 09:25:34 -07:00
parent 10d141395f
commit fd74320c8e
2 changed files with 3 additions and 2 deletions

View file

@ -110,7 +110,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
protected void SetButtonStates()
{
// If we don't have leveling data and we need it
bool showSetupButton = PrintLevelingData.NeedsToBeRun(printer);
bool showSetupButton = PrintLevelingData.NeedsToBeRun(printer) || ProbeCalibrationWizard.NeedsToBeRun(printer);
switch (printer.Connection.CommunicationState)
{