From: daid303 Date: Fri, 22 Mar 2013 11:20:26 +0000 (+0100) Subject: Goto the next wizard page if the skip button is pressed. X-Git-Tag: 13.05~64^2~23 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=6be162a72939a3e0fa17e8c8bfaff550b3340495;p=cura.git Goto the next wizard page if the skip button is pressed. --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index b08731a1..c7055515 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -353,6 +353,7 @@ class FirmwareUpgradePage(InfoPage): def OnSkipClick(self, e): self.GetParent().FindWindowById(wx.ID_FORWARD).Enable() + self.GetParent().ShowPage(self.GetNext()) def OnUrlClick(self, e): webbrowser.open('http://daid.mine.nu/~daid/marlin_build/') @@ -410,6 +411,7 @@ class UltimakerCheckupPage(InfoPage): def OnSkipClick(self, e): self.GetParent().FindWindowById(wx.ID_FORWARD).Enable() + self.GetParent().ShowPage(self.GetNext()) def OnCheckClick(self, e=None): self.errorLogButton.Show(False)