Commit 4ca7750c authored by Guillaume Seguin's avatar Guillaume Seguin

Fix #453: mention filament used in successful prints in About Dialog

parent 9cf19c02
...@@ -743,8 +743,12 @@ class PronterWindow(MainWindow, pronsole.pronsole): ...@@ -743,8 +743,12 @@ class PronterWindow(MainWindow, pronsole.pronsole):
info.SetName('Printrun') info.SetName('Printrun')
info.SetVersion(printcore.__version__) info.SetVersion(printcore.__version__)
description = _("\ description = _("Printrun is a pure Python 3D printing"
Printrun is a pure Python 3D printing (and other types of CNC) host software.") " (and other types of CNC) host software.")
description += "\n\n" + \
_("%.02fmm of filament have been extruded during prints") \
% self.settings.total_filament_used
info.SetDescription(description) info.SetDescription(description)
info.SetCopyright('(C) 2011 - 2014') info.SetCopyright('(C) 2011 - 2014')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment