From ee9fc539c6186319e04219861edfe450453cb511 Mon Sep 17 00:00:00 2001 From: daid Date: Tue, 25 Jun 2013 10:29:29 +0200 Subject: [PATCH] Fix the first-time-run wizard. Fix the commandline slicing #462 --- Cura/gui/configWizard.py | 1 + Cura/util/sliceEngine.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 80ce9f0d..ddb07bad 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -437,6 +437,7 @@ class UltimakerCheckupPage(InfoPage): self.tempState.SetBitmap(self.unknownBitmap) self.stopState.SetBitmap(self.unknownBitmap) self.checkupState = 0 + self.checkExtruderNr = 0 self.comm = machineCom.MachineCom(callbackObject=self) def OnErrorLog(self, e): diff --git a/Cura/util/sliceEngine.py b/Cura/util/sliceEngine.py index 94d1b778..7b264258 100644 --- a/Cura/util/sliceEngine.py +++ b/Cura/util/sliceEngine.py @@ -66,7 +66,7 @@ class Slicer(object): self._thread = None def wait(self): - if self._process is not None: + if self._thread is not None: self._thread.join() def getGCodeFilename(self): -- 2.30.2