From 72da44f68af9c260d546c333416132b325f76484 Mon Sep 17 00:00:00 2001 From: daid303 Date: Tue, 8 Jan 2013 10:54:56 +0100 Subject: [PATCH] Add missing else statements in initial wizard --- Cura/gui/configWizard.py | 4 ++++ 1 file changed, 4 insertions(+) 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): -- 2.30.2