From 33d9c832642f2c3ab82bcf68e191f98fa4e827cd Mon Sep 17 00:00:00 2001 From: nallath Date: Thu, 6 Feb 2014 15:05:19 +0100 Subject: [PATCH] Fixed close button about window for linux --- Cura/gui/aboutWindow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2