[GRASS-SVN] r67736 - grass/branches/releasebranch_7_0/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Feb 6 04:02:51 PST 2016
Author: martinl
Date: 2016-02-06 04:02:51 -0800 (Sat, 06 Feb 2016)
New Revision: 67736
Modified:
grass/branches/releasebranch_7_0/gui/wxpython/gui_core/dialogs.py
Log:
wxGUI: fix quit dialog focus, default is close gui
(merge r67734 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 2016-02-06 12:01:11 UTC (rev 67735)
+++ grass/branches/releasebranch_7_0/gui/wxpython/gui_core/dialogs.py 2016-02-06 12:02:51 UTC (rev 67736)
@@ -2810,11 +2810,11 @@
self.btnCancel = wx.Button(parent = self.panel, id = wx.ID_CANCEL)
self.btnClose = wx.Button(parent = self.panel, id = wx.ID_NO,
label=_("Close GUI"))
+ self.btnClose.SetFocus()
self.btnQuit = wx.Button(parent = self.panel, id = wx.ID_YES,
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)
self.btnQuit.Bind(wx.EVT_BUTTON, self.OnQuit)
More information about the grass-commit
mailing list