From 9da34d0da4752e6cb86e165bb31a071f9f70bdbf Mon Sep 17 00:00:00 2001 From: nickthetait Date: Fri, 6 Nov 2015 08:31:16 -0700 Subject: [PATCH] Shorten print progress percentage to one decimal place --- Cura/gui/printWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py index 3fe5331c..f731929d 100644 --- a/Cura/gui/printWindow.py +++ b/Cura/gui/printWindow.py @@ -952,7 +952,7 @@ class printWindowAdvanced(wx.Frame): if total > 0: progress = float(current) / float(total) self.progress.SetValue(progress * 1000) - self.printStatus.SetLabel(_("Printing %.2f%% | Line %d of %d lines | Z: %.3f mm") % (progress * 100, current, total, z)) + self.printStatus.SetLabel(_("Printing %.1f%% | Line %d of %d lines | Z: %.3f mm") % (progress * 100, current, total, z)) else: self.progress.SetValue(0) info = connection.getStatusString() -- 2.30.2