From: nickthetait Date: Fri, 22 May 2015 17:33:45 +0000 (-0600) Subject: more stuff X-Git-Tag: lulzbot-15.02.1-1.01~2^2~17 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5149921f126922daa9261c900341bb85dbb8ce23;p=cura.git more stuff --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 763caff4..a78fb50f 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -508,7 +508,6 @@ class MachineSelectPage(InfoPage): profile.putMachineSetting('machine_width', '298') profile.putMachineSetting('machine_depth', '275') profile.putMachineSetting('machine_height', '250') - profile.putMachineSetting('machine_name', 'LulzBot TAZ 5') profile.putMachineSetting('machine_type', 'lulzbot_TAZ_5') profile.putMachineSetting('serial_baud', '115200') else: @@ -1032,9 +1031,13 @@ class Taz5NozzleSelectPage(InfoPage): def StoreData(self): if self.Nozzle35Radio.GetValue(): - profile.putProfileSetting('nozzle_size', '0.35') #TODO: does more magic need to happen here? + profile.putProfileSetting('nozzle_size', '0.35') + profile.putMachineSetting('machine_name', 'LulzBot TAZ 5 (0.35 nozzle)') + #TODO: Use existing profiles else: profile.putProfileSetting('nozzle_size', '0.5') + profile.putMachineSetting('machine_name', 'LulzBot TAZ 5 (0.5 nozzle)') + #TODO: Use new profiles def OnPageChanging(self, e): e.GetPage().StoreData()