From: daid303 Date: Tue, 8 Jan 2013 09:54:56 +0000 (+0100) Subject: Add missing else statements in initial wizard X-Git-Tag: 13.03~122 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=72da44f68af9c260d546c333416132b325f76484;p=cura.git Add missing else statements in initial wizard --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index b209c792..e6ae89fb 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -303,8 +303,12 @@ class SelectParts(InfoPage): profile.putPreference('has_heated_bed', str(self.heatedBed.GetValue())) if self.dualExtrusion.GetValue(): profile.putPreference('extruder_amount', '2') + else: + profile.putPreference('extruder_amount', '1') if profile.getPreference('ultimaker_extruder_upgrade') == 'True': profile.putProfileSetting('retraction_enable', 'True') + else: + profile.putProfileSetting('retraction_enable', 'False') class FirmwareUpgradePage(InfoPage):