chiark / gitweb /
Fix hyperlink controls
authorYouness Alaoui <kakaroto@kakaroto.homelinux.net>
Fri, 21 Aug 2015 19:51:25 +0000 (15:51 -0400)
committerYouness Alaoui <kakaroto@kakaroto.homelinux.net>
Fri, 21 Aug 2015 19:51:27 +0000 (15:51 -0400)
Url argument apparently needs the url= key
Fixes T205

Cura/gui/aboutWindow.py
Cura/gui/newVersionDialog.py

index e1e12d9f3dcc5f64fe636a7d19f3d28e5053769c..180f0d7dce583861af34c56f9ae091c9179cff3a 100644 (file)
@@ -35,7 +35,7 @@ class aboutWindow(wx.Frame):
 
                s.Add(wx.StaticText(p, -1, 'Release notes:'))
                url = "code.alephobjects.com/w/cura/release-notes/"
-               s.Add(wx.HyperlinkCtrl(p, -1, url))
+               s.Add(wx.HyperlinkCtrl(p, -1, url=url))
 
                s.Add(wx.StaticText(p, -1, ''))
                s.Add(wx.StaticText(p, -1, 'End solution for Open Source Fused Filament Fabrication 3D printing.'), flag=wx.TOP, border=5)
index e6d9936b4cea3f671600ec29eb342b76b89fbff3..4cd195844a6fcac16a62de4a3aa54b08d0abc474 100644 (file)
@@ -32,7 +32,7 @@ class newVersionDialog(wx.Dialog):
                s.Add(wx.StaticLine(p), flag=wx.EXPAND|wx.TOP|wx.BOTTOM, border=10)
                s.Add(wx.StaticText(p, -1, _('Want to know what is new and cool in this version?')))
                s.Add(wx.StaticText(p, -1, _('Click here for a list of changes:')))
-               s.Add(wx.HyperlinkCtrl(p, -1, newVersionDialog.url))
+               s.Add(wx.HyperlinkCtrl(p, -1, url=newVersionDialog.url))
 
                s.Add(wx.StaticLine(p), flag=wx.EXPAND|wx.TOP|wx.BOTTOM, border=10)
                button = wx.Button(p, -1, _('OK'))