From: daid303 Date: Tue, 9 Apr 2013 09:13:13 +0000 (+0200) Subject: Update the defualt profile qualities to better reflect what the machine can do. X-Git-Tag: 13.05~64^2~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8e097b88562213f56a0ad4bbbfee1a32dd9c6c04;p=cura.git Update the defualt profile qualities to better reflect what the machine can do. --- diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index 08ed7421..49dbd75a 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -105,7 +105,7 @@ class simpleModePanel(wx.Panel): nozzle_size = float(get('nozzle_size')) if self.printTypeNormal.GetValue(): put('wall_thickness', nozzle_size * 2.0) - put('layer_height', '0.2') + put('layer_height', '0.15') put('fill_density', '20') elif self.printTypeLow.GetValue(): put('wall_thickness', nozzle_size * 1.4) @@ -116,7 +116,7 @@ class simpleModePanel(wx.Panel): put('bottom_layer_speed', '40') elif self.printTypeHigh.GetValue(): put('wall_thickness', nozzle_size * 2.0) - put('layer_height', '0.1') + put('layer_height', '0.6') put('fill_density', '25') put('bottom_layer_speed', '15') put('bottom_thickness', '0.25')