From: Youness Alaoui Date: Fri, 6 Mar 2015 17:05:57 +0000 (-0500) Subject: Disable bed level wizard for TAZ 5 as well X-Git-Tag: lulzbot-15.02.1-1.01~46 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=62a98dc5e1db10d0ba0385fc62eda8691f84c42f;p=cura.git Disable bed level wizard for TAZ 5 as well --- diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index cafe19c4..16c215c8 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -373,7 +373,11 @@ class mainWindow(wx.Frame): # Enabled sash self.splitter.SetSashSize(4) self.defaultFirmwareInstallMenuItem.Enable(firmwareInstall.getDefaultFirmware() is not None) - if profile.getMachineSetting('machine_type') == 'ultimaker2' or profile.getMachineSetting('machine_type') == 'lulzbot_mini' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ': + if profile.getMachineSetting('machine_type') == 'ultimaker2' or \ + profile.getMachineSetting('machine_type') == 'lulzbot_mini' or \ + profile.getMachineSetting('machine_type') == 'lulzbot_TAZ_4' or \ + profile.getMachineSetting('machine_type') == 'lulzbot_TAZ_5' or \ + profile.getMachineSetting('machine_type') == 'lulzbot_TAZ': self.bedLevelWizardMenuItem.Enable(False) self.headOffsetWizardMenuItem.Enable(False) else: