From: daid Date: Thu, 5 Apr 2012 16:00:22 +0000 (+0200) Subject: Change default support material amount to 50%, this seems to make the support a lot... X-Git-Tag: RC3~99 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8a82f0c625cdee8141a3cab103a9c2de53e362bb;p=cura.git Change default support material amount to 50%, this seems to make the support a lot easier to remove, without affecting quality. --- diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index ece6ffaa..4e6262a2 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -205,7 +205,7 @@ class simpleModeWindow(configBase.configWindowBase): put('infill_type', 'Line') put('solid_top', 'True') put('fill_overlap', '15') - put('support_rate', '100') + put('support_rate', '50') put('support_distance', '0.5') put('joris', 'False') put('cool_min_feedrate', '5') diff --git a/Cura/util/profile.py b/Cura/util/profile.py index e39d9257..c63ef0c0 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -51,7 +51,7 @@ profileDefaultSettings = { 'infill_type': 'Line', 'solid_top': 'True', 'fill_overlap': '15', - 'support_rate': '100', + 'support_rate': '50', 'support_distance': '0.5', 'joris': 'False', 'enable_raft': 'False',