From: daid303 Date: Fri, 29 Mar 2013 16:08:01 +0000 (+0100) Subject: Change the bottom cutoff from a float-spinner to a normal input box, as the spinner... X-Git-Tag: 13.05~64^2~15 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2f6afbec16d6bc80d26db609dd94e24a4b8a886b;p=cura.git Change the bottom cutoff from a float-spinner to a normal input box, as the spinner is causing lots of issues. --- diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index 1c143f61..de4196dc 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -658,7 +658,7 @@ class normalSettingsPanel(configBase.configPanelBase): c = configBase.SettingRow(right, "Initial layer thickness (mm)", 'bottom_thickness', '0.0', 'Layer thickness of the bottom layer. A thicker bottom layer makes sticking to the bed easier. Set to 0.0 to have the bottom layer thickness the same as the other layers.') validators.validFloat(c, 0.0) validators.warningAbove(c, lambda : (float(profile.getProfileSetting('nozzle_size')) * 3.0 / 4.0), "A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad results and is not recommended.") - c = configBase.SettingRow(right, "Cut off object bottom (mm)", 'object_sink', 0.05, 'Sinks the object into the platform, this can be used for objects that do not have a flat bottom and thus create a too small first layer.') + c = configBase.SettingRow(right, "Cut off object bottom (mm)", 'object_sink', '0.00', 'Sinks the object into the platform, this can be used for objects that do not have a flat bottom and thus create a too small first layer.') validators.validFloat(c, 0.0) configBase.settingNotify(c, lambda : self.GetParent().GetParent().GetParent().preview3d.Refresh()) c = configBase.SettingRow(right, "Duplicate outlines", 'enable_skin', False, 'Skin prints the outer lines of the prints twice, each time with half the thickness. This gives the illusion of a higher print quality.')