[GRASS-SVN] r67269 - grass/branches/releasebranch_7_0/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Dec 20 03:09:39 PST 2015


Author: martinl
Date: 2015-12-20 03:09:39 -0800 (Sun, 20 Dec 2015)
New Revision: 67269

Modified:
   grass/branches/releasebranch_7_0/gui/wxpython/gui_core/dialogs.py
Log:
wxGUI: quit dialog cosmetics (merge r67268 from trunk)

Modified: grass/branches/releasebranch_7_0/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/gui_core/dialogs.py	2015-12-20 11:06:42 UTC (rev 67268)
+++ grass/branches/releasebranch_7_0/gui/wxpython/gui_core/dialogs.py	2015-12-20 11:09:39 UTC (rev 67269)
@@ -2806,7 +2806,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