From: daid Date: Wed, 26 Sep 2012 13:12:14 +0000 (+0200) Subject: Remove dwindle, it did not really improve results. X-Git-Tag: 13.03~324 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=58683e4eb5869dadfc0cbf09b406f9b316a2c469;p=cura.git Remove dwindle, it did not really improve results. --- diff --git a/Cura/cura_sf/fabmetheus_utilities/settings.py b/Cura/cura_sf/fabmetheus_utilities/settings.py index 9734ba86..b504c159 100644 --- a/Cura/cura_sf/fabmetheus_utilities/settings.py +++ b/Cura/cura_sf/fabmetheus_utilities/settings.py @@ -337,11 +337,11 @@ def getProfileInformation(): 'Minimum_Distance_for_Early_Shutdown_millimeters': DEFSET, 'Slowdown_Startup_Steps_positive_integer': DEFSET, },'dwindle': { - 'Activate_Dwindle': storedSetting('enable_dwindle'), + 'Activate_Dwindle': "False", 'End_Rate_Multiplier_ratio': '0.5', - 'Pent_Up_Volume_cubic_millimeters': storedSetting('dwindle_pent_up_volume'), + 'Pent_Up_Volume_cubic_millimeters': "0.4", 'Slowdown_Steps_positive_integer': '5', - 'Slowdown_Volume_cubic_millimeters': storedSetting('dwindle_slowdown_volume'), + 'Slowdown_Volume_cubic_millimeters': "5.0", },'splodge': { 'Activate_Splodge': "False", 'Initial_Lift_over_Extra_Thickness_ratio': DEFSET, diff --git a/Cura/gui/expertConfig.py b/Cura/gui/expertConfig.py index f2ec64a7..1e47ec94 100644 --- a/Cura/gui/expertConfig.py +++ b/Cura/gui/expertConfig.py @@ -67,13 +67,6 @@ class expertConfigWindow(configBase.configWindowBase): configBase.TitleRow(right, "Retraction") c = configBase.SettingRow(right, "Retract on jumps only", 'retract_on_jumps_only', True, 'Only retract when we are making a move that is over a hole in the model, else retract on every move. This effects print quality in different ways.') - configBase.TitleRow(right, "Dwindle") - c = configBase.SettingRow(right, "Enable dwindle", 'enable_dwindle', False, 'Dwindle is used to slow down near the end of a printed line, and reducing the amount of filament printed near the end. This to release the preasure on the printer head.') - c = configBase.SettingRow(right, "Pent up volume (mm3)", 'dwindle_pent_up_volume', '0.4', 'Amount of plastic inside the nozzle under pressure. This normally comes out as ooze after printing.') - validators.validFloat(c, 0.0001) - c = configBase.SettingRow(right, "Slow down volume (mm3)", 'dwindle_slowdown_volume', '5.0', 'Amount of printing volume that is used to slow down to release the pressure.') - validators.validFloat(c, 0.0001) - main.Fit() self.Fit() diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 7d91cf44..c0f6a745 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -71,10 +71,6 @@ profileDefaultSettings = { 'raft_interface_material_amount': '100', 'bottom_thickness': '0.3', - 'enable_dwindle': 'False', - 'dwindle_pent_up_volume': '0.4', - 'dwindle_slowdown_volume': '5.0', - 'add_start_end_gcode': 'True', 'gcode_extension': 'gcode', 'alternative_center': '',