diff --git a/ConfigurationPage/PrintLeveling/PrintLevelPages.cs b/ConfigurationPage/PrintLeveling/PrintLevelPages.cs index cc45704ef..611746ff9 100644 --- a/ConfigurationPage/PrintLeveling/PrintLevelPages.cs +++ b/ConfigurationPage/PrintLeveling/PrintLevelPages.cs @@ -124,6 +124,13 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling container.nextButton.Enabled = false; } + // if we are trying to go to a temp of 0 than just move on to next window + if(printer.Settings.GetValue(SettingsKey.bed_temperature) == 0) + { + // advance to the next page + UiThread.RunOnIdle(() => container.nextButton.OnClick(null)); + } + base.PageIsBecomingActive(); }