Don't wait to heat to 0. Just move on to next page.

This commit is contained in:
Lars Brubaker 2017-11-09 16:31:59 -08:00
parent a99072cf8f
commit e3fe584f03

View file

@ -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<double>(SettingsKey.bed_temperature) == 0)
{
// advance to the next page
UiThread.RunOnIdle(() => container.nextButton.OnClick(null));
}
base.PageIsBecomingActive();
}