[GRASS-SVN] r48999 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Oct 29 17:59:33 EDT 2011


Author: martinl
Date: 2011-10-29 14:59:33 -0700 (Sat, 29 Oct 2011)
New Revision: 48999

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/goutput.py
Log:
wxGUI: use wx.ID_STOP instead of "Abort"
       (merge r48996 from trunk)


Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/goutput.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/goutput.py	2011-10-29 21:59:01 UTC (rev 48998)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/goutput.py	2011-10-29 21:59:33 UTC (rev 48999)
@@ -251,7 +251,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