From d76de05d44a72724bb1653f4712b2d8c0350f76f Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Fri, 21 Aug 2015 15:51:25 -0400 Subject: [PATCH] Fix hyperlink controls Url argument apparently needs the url= key Fixes T205 --- Cura/gui/aboutWindow.py | 2 +- Cura/gui/newVersionDialog.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cura/gui/aboutWindow.py b/Cura/gui/aboutWindow.py index e1e12d9f..180f0d7d 100644 --- a/Cura/gui/aboutWindow.py +++ b/Cura/gui/aboutWindow.py @@ -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) diff --git a/Cura/gui/newVersionDialog.py b/Cura/gui/newVersionDialog.py index e6d9936b..4cd19584 100644 --- a/Cura/gui/newVersionDialog.py +++ b/Cura/gui/newVersionDialog.py @@ -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')) -- 2.30.2