Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickthetait <tait@alephobjects.com>2015-05-22 20:33:45 +0300
committernickthetait <tait@alephobjects.com>2015-06-02 21:34:07 +0300
commit5149921f126922daa9261c900341bb85dbb8ce23 (patch)
tree2ce3edaa68d766629a52a5dd0cd4aa6bc9ea6499
parent7b3efca51179dbadfaddc8625bff9ed02a0a8cf2 (diff)
more stuff
-rw-r--r--Cura/gui/configWizard.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py
index 763caff469..a78fb50fe7 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()