From: nickthetait Date: Tue, 10 Nov 2015 17:55:38 +0000 (-0700) Subject: Add URL link to source code in about page X-Git-Tag: lulzbot-17.15~5 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=ed9bd50d4e17e1fe7742694518749568079daf58;p=cura.git Add URL link to source code in about page --- diff --git a/Cura/gui/aboutWindow.py b/Cura/gui/aboutWindow.py index c43ce2c1..7d7a36ae 100644 --- a/Cura/gui/aboutWindow.py +++ b/Cura/gui/aboutWindow.py @@ -37,6 +37,10 @@ class aboutWindow(wx.Frame): url = "code.alephobjects.com/w/cura/release-notes/" s.Add(wx.HyperlinkCtrl(p, -1, url, url)) + s.Add(wx.StaticText(p, -1, 'Source Code:')) + url2 = "code.alephobjects.com/diffusion/CURA/" + s.Add(wx.HyperlinkCtrl(p, -1, url2, url2)) + 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) s.Add(wx.StaticText(p, -1, 'Cura is currently developed and maintained by David Braam and Ultimaker.'), flag=wx.TOP, border=5)