chiark / gitweb /
Add machine center is zero to machine settings. Properly handle depricated max_z_spee...
[cura.git] / Cura / gui / simpleMode.py
index 13ea7a2280f02801ea622585a11327e3fd1a5c84..34aad5a85deeaa0139a3e03411ae192e64517f20 100644 (file)
@@ -27,7 +27,7 @@ class simpleModePanel(wx.Panel):
                self.printMaterialPLA = wx.RadioButton(printMaterialPanel, -1, 'PLA', style=wx.RB_GROUP)
                self.printMaterialABS = wx.RadioButton(printMaterialPanel, -1, 'ABS')
                self.printMaterialDiameter = wx.TextCtrl(printMaterialPanel, -1, profile.getProfileSetting('filament_diameter'))
-               if profile.getPreference('gcode_flavor') == 'UltiGCode':
+               if profile.getMachineSetting('gcode_flavor') == 'UltiGCode':
                        printMaterialPanel.Show(False)
                
                self.printSupport = wx.CheckBox(self, -1, _("Print support structure"))
@@ -93,7 +93,6 @@ class simpleModePanel(wx.Panel):
                put('retraction_amount', '4.5')
                put('retraction_extra', '0.0')
                put('travel_speed', '150')
-               put('max_z_speed', '3.0')
                put('bottom_layer_speed', '25')
                put('cool_min_layer_time', '5')
                put('fan_enabled', 'True')
@@ -159,7 +158,7 @@ class simpleModePanel(wx.Panel):
                        put('skirt_line_count', '0')
                        put('fan_layer', '1')
                        put('bottom_thickness', '0.0')
-                       put('print_temperature', '260')
+                       put('print_temperature', '245')
                put('plugin_config', '')
 
        def updateProfileToControls(self):