[GRASS-SVN] r32003 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Jul 5 16:10:15 EDT 2008
Author: martinl
Date: 2008-07-05 16:10:15 -0400 (Sat, 05 Jul 2008)
New Revision: 32003
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py
Log:
wxGUI: Stop button should not be active until the module starts running, trac #219 (merged from trunk, r32002)
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py 2008-07-05 20:08:07 UTC (rev 32002)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py 2008-07-05 20:10:15 UTC (rev 32003)
@@ -672,6 +672,7 @@
# abort
self.btn_abort = wx.Button(parent=self.panel, id=wx.ID_STOP)
self.btn_abort.SetToolTipString(_("Abort the running command"))
+ self.btn_abort.Enable(False)
# copy
btn_clipboard = wx.Button(parent=self.panel, id=wx.ID_COPY)
btn_clipboard.SetToolTipString(_("Copy the current command string to the clipboard"))
More information about the grass-commit
mailing list