From e3fe584f033263bdbda509071fecc447b77ba4b2 Mon Sep 17 00:00:00 2001 From: Lars Brubaker Date: Thu, 9 Nov 2017 16:31:59 -0800 Subject: [PATCH] Don't wait to heat to 0. Just move on to next page. --- ConfigurationPage/PrintLeveling/PrintLevelPages.cs | 7 +++++++ 1 file changed, 7 insertions(+) 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(); }