[GRASS-SVN] r67724 - grass/trunk/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Feb 4 15:34:01 PST 2016
Author: martinl
Date: 2016-02-04 15:34:01 -0800 (Thu, 04 Feb 2016)
New Revision: 67724
Modified:
grass/trunk/gui/wxpython/gui_core/dialogs.py
Log:
wxGUI: fix quit layout (on gnome)
Modified: grass/trunk/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/dialogs.py 2016-02-04 14:12:06 UTC (rev 67723)
+++ grass/trunk/gui/wxpython/gui_core/dialogs.py 2016-02-04 23:34:01 UTC (rev 67724)
@@ -18,7 +18,7 @@
- :class:`SymbolDialog`
- :class:`QuitDialog`
-(C) 2008-2015 by the GRASS Development Team
+(C) 2008-2016 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
@@ -2103,8 +2103,7 @@
class QuitDialog(wx.Dialog):
def __init__(self, parent, title=_("Quit GRASS GIS"), id=wx.ID_ANY,
- style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER,
- size=(350, 125), **kwargs):
+ style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER, **kwargs):
"""Dialog to quit GRASS
:param parent: window
@@ -2131,7 +2130,6 @@
self.btnQuit.Bind(wx.EVT_BUTTON, self.OnQuit)
self.__layout()
- self.SetSize(size)
def __layout(self):
"""Do layout"""
@@ -2152,7 +2150,7 @@
flag = wx.ALL | wx.ALIGN_RIGHT, border = 5)
self.panel.SetSizer(sizer)
- sizer.Fit(self.panel)
+ sizer.Fit(self)
self.Layout()
def OnClose(self, event):
More information about the grass-commit
mailing list