From 2b979fb14c41cfe349de1268dfa40bacce937fbf Mon Sep 17 00:00:00 2001 From: Johannes Reinhardt Date: Sun, 12 Feb 2012 22:42:03 +0100 Subject: [PATCH] added missing units in GUI --- lib/Slic3r/Config.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index 4bf2427a..6e1058d4 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -28,13 +28,13 @@ our $Options = { # printer options 'nozzle_diameter' => { - label => 'Nozzle diameter', + label => 'Nozzle diameter (mm)', cli => 'nozzle-diameter=f', type => 'f', important => 1, }, 'print_center' => { - label => 'Print center', + label => 'Print center (mm)', cli => 'print-center=s', type => 'point', serialize => sub { join ',', @{$_[0]} }, @@ -51,7 +51,7 @@ our $Options = { type => 's', }, 'z_offset' => { - label => 'Z offset', + label => 'Z offset (mm)', cli => 'z-offset=f', type => 'f', },