From: daid303 Date: Thu, 1 Nov 2012 08:12:07 +0000 (+0100) Subject: Better handle plugin exceptions. X-Git-Tag: 13.03~213 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=19a9ac9f99e478f8ead630176abcb1e79ea9a05e;p=cura.git Better handle plugin exceptions. --- diff --git a/Cura/gui/sliceProgessPanel.py b/Cura/gui/sliceProgessPanel.py index b575a171..0cbdc2d3 100644 --- a/Cura/gui/sliceProgessPanel.py +++ b/Cura/gui/sliceProgessPanel.py @@ -168,6 +168,7 @@ class WorkerThread(threading.Thread): if logLine.startswith('Model error('): gcodefile.write(';%s\n' % (logLine)) gcodefile.close() + wx.CallAfter(self.notifyWindow.statusText.SetLabel, "Running plugins") ret = profile.runPostProcessingPlugins(gcodeFilename) if ret != None: self.progressLog.append(ret)