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:
authorYouness Alaoui <kakaroto@kakaroto.homelinux.net>2015-06-02 19:49:51 +0300
committerYouness Alaoui <kakaroto@kakaroto.homelinux.net>2015-06-02 20:04:51 +0300
commitee85e4b7ad9e4dadc7f8343dd720e8ccfcdef864 (patch)
tree677a25329d4ea2bc1cd57867598eedb72ca18d30
parentf9f1ac1d5393adbbf9ffce19642c1c3eca8b73ce (diff)
Set the proper machine_type for 0.5mm nozzle TAZ5
-rw-r--r--Cura/gui/configWizard.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py
index 45b7885dca..c1a91a39f8 100644
--- a/Cura/gui/configWizard.py
+++ b/Cura/gui/configWizard.py
@@ -507,8 +507,8 @@ class MachineSelectPage(InfoPage):
profile.putMachineSetting('machine_width', '298')
profile.putMachineSetting('machine_depth', '275')
profile.putMachineSetting('machine_height', '250')
- profile.putMachineSetting('machine_type', 'lulzbot_TAZ_5')
profile.putMachineSetting('serial_baud', '115200')
+ # Machine type and name are set in the nozzle select page
else:
profile.putMachineSetting('machine_width', '155')
profile.putMachineSetting('machine_depth', '155')
@@ -1033,11 +1033,12 @@ class Taz5NozzleSelectPage(InfoPage):
if self.Nozzle35Radio.GetValue():
profile.putProfileSetting('nozzle_size', '0.35')
profile.putMachineSetting('machine_name', 'LulzBot TAZ 5 (0.35 nozzle)')
- #TODO: Use existing profiles
+ profile.putMachineSetting('machine_type', 'lulzbot_TAZ_5')
+
else:
profile.putProfileSetting('nozzle_size', '0.5')
profile.putMachineSetting('machine_name', 'LulzBot TAZ 5 (0.5 nozzle)')
- #TODO: Use new profiles
+ profile.putMachineSetting('machine_type', 'lulzbot_TAZ_5_05nozzle')
def OnPageChanging(self, e):
e.GetPage().StoreData()