[GRASS-SVN] r48996 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Oct 29 17:56:20 EDT 2011
Author: martinl
Date: 2011-10-29 14:56:20 -0700 (Sat, 29 Oct 2011)
New Revision: 48996
Modified:
grass/trunk/gui/wxpython/gui_modules/goutput.py
Log:
wxGUI: use wx.ID_STOP instead of "Abort"
Modified: grass/trunk/gui/wxpython/gui_modules/goutput.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/goutput.py 2011-10-29 21:48:05 UTC (rev 48995)
+++ grass/trunk/gui/wxpython/gui_modules/goutput.py 2011-10-29 21:56:20 UTC (rev 48996)
@@ -252,7 +252,7 @@
self.btnOutputSave = wx.Button(parent = self.panelPrompt, id = wx.ID_SAVE)
self.btnOutputSave.SetToolTipString(_("Save output window content to the file"))
# abort
- self.btnCmdAbort = wx.Button(parent = self.panelPrompt, id = wx.ID_ANY, label = _("&Abort"))
+ self.btnCmdAbort = wx.Button(parent = self.panelPrompt, id = wx.ID_STOP)
self.btnCmdAbort.SetToolTipString(_("Abort running command"))
self.btnCmdAbort.Enable(False)
More information about the grass-commit
mailing list