From 1aab7d35fc3ca3550114ce6cc7d97eda5b2a4eb6 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Tue, 2 Jun 2015 13:57:31 -0400 Subject: [PATCH] Disable the back button on the machine select page --- Cura/gui/configWizard.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 19cbc685..68b244a0 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -429,6 +429,9 @@ class MachineSelectPage(InfoPage): def AllowNext(self): return True + def AllowBack(self): + return False + def StoreData(self): profile.putProfileSetting('retraction_enable', 'True') if self.Ultimaker2Radio.GetValue() or self.Ultimaker2GoRadio.GetValue() or self.Ultimaker2ExtRadio.GetValue(): -- 2.30.2