From 74635ca656e95cc444a4ced92dc7fec7d46ac532 Mon Sep 17 00:00:00 2001 From: nickthetait Date: Fri, 31 Jul 2015 13:48:57 -0600 Subject: [PATCH] Remove unnecessary url link --- Cura/gui/configWizard.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 365ea2df..3b985535 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -1188,24 +1188,14 @@ class LulzbotReadyPage(InfoPage): self.AddSeperator() class LulzbotToolheadSelectPage(InfoPage): - url='http://lulzbot.com/toolhead-identification' - def __init__(self, parent, title): super(LulzbotToolheadSelectPage, self).__init__(parent, title) - self.AddBitmap(wx.Bitmap(resources.getPathForImage('Lulzbot_logo.png'))) - self.AddText(_('Please select your currently installed Tool Head')) - txt = self.AddText(_('WARNING: Carefully select the right Tool Head.\nFlashing the firmware with the wrong Tool Head can damage your LulzBot printer. Learn more here :')) + txt = self.AddText(_('WARNING: Carefully select the right Tool Head.\nFlashing the firmware with the wrong Tool Head can damage your LulzBot printer.')) txt.SetForegroundColour(wx.RED) - button = self.AddButton(self.url) - button.Bind(wx.EVT_BUTTON, self.OnUrlClick) - self.AddSeperator() - def OnUrlClick(self, e): - webbrowser.open(LulzbotMiniToolheadSelectPage.url) - class LulzbotMiniToolheadSelectPage(LulzbotToolheadSelectPage): def __init__(self, parent, allowBack = True): super(LulzbotMiniToolheadSelectPage, self).__init__(parent, _("LulzBot Mini Toolhead Selection")) -- 2.30.2