[GRASS-SVN] r67268 - grass/trunk/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Dec 20 03:06:43 PST 2015
Author: martinl
Date: 2015-12-20 03:06:42 -0800 (Sun, 20 Dec 2015)
New Revision: 67268
Modified:
grass/trunk/gui/wxpython/gui_core/dialogs.py
Log:
wxGUI: quit dialog cosmetics
Modified: grass/trunk/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/dialogs.py 2015-12-20 10:44:47 UTC (rev 67267)
+++ grass/trunk/gui/wxpython/gui_core/dialogs.py 2015-12-20 11:06:42 UTC (rev 67268)
@@ -2116,7 +2116,9 @@
self.btnClose = wx.Button(parent = self.panel, id = wx.ID_NO,
label=_("Close GUI"))
self.btnQuit = wx.Button(parent = self.panel, id = wx.ID_YES,
- label=_("Quit GRASS"))
+ label=_("Quit GRASS GIS"))
+ self.btnQuit.SetMinSize((130, self.btnQuit.GetSize()[1]))
+ self.btnQuit.SetForegroundColour(wx.Colour(35, 142, 35))
self.btnQuit.SetDefault()
self.btnClose.Bind(wx.EVT_BUTTON, self.OnClose)
More information about the grass-commit
mailing list