From b67ef20d3adcc428a88e2b9d98fce5eaffebc9ea Mon Sep 17 00:00:00 2001 From: daid303 Date: Thu, 4 Oct 2012 14:16:46 +0200 Subject: [PATCH] Fix the checkup wizard, we get temperature readings before the machinie is operational. --- Cura/gui/configWizard.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index e11bb472..0b42adfa 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -346,6 +346,8 @@ class UltimakerCheckupPage(InfoPage): pass def mcTempUpdate(self, temp, bedTemp, targetTemp, bedTargetTemp): + if not self.comm.isOperational(): + return if self.checkupState == 0: self.tempCheckTimeout = 20 if temp > 70: -- 2.30.2