From 2fbf405d6518ab9e3e865b2067d6e08eddafe4d3 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Fri, 6 Nov 2015 11:36:37 -0500 Subject: [PATCH] Cleanup print status label text and clear content once done --- Cura/gui/printWindow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- 2.30.2