From 62a98dc5e1db10d0ba0385fc62eda8691f84c42f Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Fri, 6 Mar 2015 12:05:57 -0500 Subject: [PATCH] Disable bed level wizard for TAZ 5 as well --- Cura/gui/mainWindow.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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: -- 2.30.2