chiark / gitweb /
Remove unnecessary url link
authornickthetait <tait@alephobjects.com>
Fri, 31 Jul 2015 19:48:57 +0000 (13:48 -0600)
committernickthetait <tait@alephobjects.com>
Fri, 31 Jul 2015 19:48:57 +0000 (13:48 -0600)
Cura/gui/configWizard.py

index 365ea2dfaf38c7b3fb8cb73bde0af7082ebf17c8..3b985535e091f3b069799dde21b7ad576b195572 100644 (file)
@@ -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"))