From: Youness Alaoui Date: Fri, 2 Jan 2015 08:13:24 +0000 (-0500) Subject: Move Z-offset one line above and add (mm) to the label X-Git-Tag: 14.09-1.19~1^2~9 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=33545bfc8b3f4e41f3751836d8ddb08c7ef54c2b;p=cura.git Move Z-offset one line above and add (mm) to the label --- diff --git a/Cura/gui/preferencesDialog.py b/Cura/gui/preferencesDialog.py index ba7546c3..fd4b209e 100644 --- a/Cura/gui/preferencesDialog.py +++ b/Cura/gui/preferencesDialog.py @@ -86,8 +86,8 @@ class machineSettingsDialog(wx.Dialog): configBase.SettingRow(left, 'machine_width', index=idx) configBase.SettingRow(left, 'machine_depth', index=idx) configBase.SettingRow(left, 'machine_height', index=idx) - configBase.SettingRow(left, 'extruder_amount', index=idx) configBase.SettingRow(left, 'extruder_z_offset', index=idx) + configBase.SettingRow(left, 'extruder_amount', index=idx) configBase.SettingRow(left, 'has_heated_bed', index=idx) configBase.SettingRow(left, 'machine_center_is_zero', index=idx) configBase.SettingRow(left, 'machine_shape', index=idx) diff --git a/Cura/util/profile.py b/Cura/util/profile.py index fe700d40..0c25bb00 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -509,7 +509,7 @@ setting('extruder_offset_x2', '0.0', float, 'machine', 'hidden').setLabel(_("Off setting('extruder_offset_y2', '0.0', float, 'machine', 'hidden').setLabel(_("Offset Y"), _("The offset of your tertiary extruder compared to the primary.")) setting('extruder_offset_x3', '0.0', float, 'machine', 'hidden').setLabel(_("Offset X"), _("The offset of your forth extruder compared to the primary.")) setting('extruder_offset_y3', '0.0', float, 'machine', 'hidden').setLabel(_("Offset Y"), _("The offset of your forth extruder compared to the primary.")) -setting('extruder_z_offset', '0.0', float, 'machine', 'hidden').setLabel(_("Z-Offset"), _("This value will be added to the Z coordinate of every line in the output G-Code to compensate for a badly calibrate Z height endstop.")) +setting('extruder_z_offset', '0.0', float, 'machine', 'hidden').setLabel(_("Z-Offset (mm)"), _("This value will be added to the Z coordinate of every line in the output G-Code to compensate for a badly calibrate Z height endstop.")) setting('steps_per_e', '0', float, 'machine', 'hidden').setLabel(_("E-Steps per 1mm filament"), _("Amount of steps per mm filament extrusion. If set to 0 then this value is ignored and the value in your firmware is used.")) setting('serial_port', 'AUTO', str, 'machine', 'hidden').setLabel(_("Serial port"), _("Serial port to use for communication with the printer")) setting('serial_port_auto', '', str, 'machine', 'hidden')