chiark / gitweb /
Remove dwindle, it did not really improve results.
authordaid <daid303@gmail.com>
Wed, 26 Sep 2012 13:12:14 +0000 (15:12 +0200)
committerdaid <daid303@gmail.com>
Wed, 26 Sep 2012 13:12:14 +0000 (15:12 +0200)
Cura/cura_sf/fabmetheus_utilities/settings.py
Cura/gui/expertConfig.py
Cura/util/profile.py

index 9734ba865fd88dfaca6e36ac846899960e6a6db4..b504c159f12c1d54a70e8191ea0065ab1bf7ca13 100644 (file)
@@ -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,
index f2ec64a763ac1da63f254aa130e8898c5133ad3f..1e47ec94a7dcd694e540a8082b8a032854e08dda 100644 (file)
@@ -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()
 
index 7d91cf4425bbb4fdeaa705c654fec2afe6c69c8b..c0f6a745c006c3c98fb0c71d4d848135972eec7d 100644 (file)
@@ -71,10 +71,6 @@ profileDefaultSettings = {
        'raft_interface_material_amount': '100',\r
        'bottom_thickness': '0.3',\r
        \r
-       'enable_dwindle': 'False',\r
-       'dwindle_pent_up_volume': '0.4',\r
-       'dwindle_slowdown_volume': '5.0',\r
-\r
        'add_start_end_gcode': 'True',\r
        'gcode_extension': 'gcode',\r
        'alternative_center': '',\r