From: Youness Alaoui Date: Fri, 6 Nov 2015 16:36:37 +0000 (-0500) Subject: Cleanup print status label text and clear content once done X-Git-Tag: lulzbot-17.14~9 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2fbf405d6518ab9e3e865b2067d6e08eddafe4d3;p=cura.git Cleanup print status label text and clear content once done --- diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py index f731929d..fc9523f9 100644 --- a/Cura/gui/printWindow.py +++ b/Cura/gui/printWindow.py @@ -952,9 +952,10 @@ class printWindowAdvanced(wx.Frame): if total > 0: progress = float(current) / float(total) self.progress.SetValue(progress * 1000) - self.printStatus.SetLabel(_("Printing %.1f%% | Line %d of %d lines | Z: %.3f mm") % (progress * 100, current, total, z)) + self.printStatus.SetLabel(_("Printing %.1f%% | Z: %.3f mm") % (progress * 100, z)) else: self.progress.SetValue(0) + self.printStatus.SetLabel("") info = connection.getStatusString() info += '\n' if self._printerConnection.getTemperature(0) is not None: