From 1d3c678c6d31b915fdd01bacd4211f1ca486a314 Mon Sep 17 00:00:00 2001 From: daid Date: Wed, 19 Jun 2013 09:47:30 +0200 Subject: [PATCH] Do not show the old progress bar when the slicing process is still starting up. Does not change much in the user-experience but makes debugging issues a bit easier. --- Cura/util/sliceEngine.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cura/util/sliceEngine.py b/Cura/util/sliceEngine.py index 97d7c359..4b876d0e 100644 --- a/Cura/util/sliceEngine.py +++ b/Cura/util/sliceEngine.py @@ -164,6 +164,7 @@ class Slicer(object): if self._process is not None: self._process.terminate() oldThread.join() + self._callback(-1.0, False) try: self._process = self._runSliceProcess(commandList) except OSError: -- 2.30.2