From: Steven Abadie Date: Fri, 7 Nov 2014 03:12:13 +0000 (-0700) Subject: Adding support settings to be used when support is turned on in simple mode X-Git-Tag: 14.09-1.18~66 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=ed74ef87206b9c93a57ad69fa800102b3df8b6b4;p=cura.git Adding support settings to be used when support is turned on in simple mode --- diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index a73e54db..946832d1 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -87,9 +87,6 @@ class simpleModePanel(wx.Panel): continue profile.setTempOverride(setting.getName(), setting.getDefault()) - if self.printSupport.GetValue(): - put('support', _("Exterior Only")) - # LulzBot Mini slice settings for use with the simple slice selection. if profile.getMachineSetting('machine_type') == 'lulzbot_mini': put('wall_thickness', '1') @@ -119,7 +116,13 @@ M84 ; steppers off G90 ; absolute positioning ;{profile_string} """) - + if self.printSupport.GetValue(): + put('support', _("Everywhere")) + put('support_type', 'Lines') + put('support_angle', '45') + put('support_fill_rate', '30') + put('support_xy_distance', '0.7') + put('support_z_distance', '0.05') if self.printMaterialHIPS.GetValue() or self.printMaterialABS.GetValue(): put('solid_layer_thickness', '0.8') put('retraction_amount', '1.5') @@ -547,7 +550,8 @@ M140 S75 ; get bed temping up during first layer put('bottom_layer_speed', '15') elif self.printTypeJoris.GetValue(): put('wall_thickness', nozzle_size * 1.5) - + if self.printSupport.GetValue(): + put('support', _("Exterior Only")) put('filament_diameter', self.printMaterialDiameter.GetValue()) if self.printMaterialPLA.GetValue(): pass