Explorar o código

wxGUI: quit dialog cosmetics

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@67268 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa %!s(int64=9) %!d(string=hai) anos
pai
achega
7946caa559
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      gui/wxpython/gui_core/dialogs.py

+ 3 - 1
gui/wxpython/gui_core/dialogs.py

@@ -2116,7 +2116,9 @@ class QuitDialog(wx.Dialog):
         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)