From: nallath Date: Thu, 6 Feb 2014 14:05:19 +0000 (+0100) Subject: Fixed close button about window for linux X-Git-Tag: 14.02-RC1~27 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=33d9c832642f2c3ab82bcf68e191f98fa4e827cd;p=cura.git Fixed close button about window for linux --- diff --git a/Cura/gui/aboutWindow.py b/Cura/gui/aboutWindow.py index 0e713b7c..2bcaae53 100644 --- a/Cura/gui/aboutWindow.py +++ b/Cura/gui/aboutWindow.py @@ -3,9 +3,9 @@ __copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AG import wx import platform -class aboutWindow(wx.Dialog): +class aboutWindow(wx.Frame): def __init__(self): - super(aboutWindow, self).__init__(None, title="About") + super(aboutWindow, self).__init__(None, title="About", style = wx.DEFAULT_DIALOG_STYLE) wx.EVT_CLOSE(self, self.OnClose)