[GRASS-SVN] r32002 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Jul 5 16:08:07 EDT 2008


Author: martinl
Date: 2008-07-05 16:08:07 -0400 (Sat, 05 Jul 2008)
New Revision: 32002

Modified:
   grass/trunk/gui/wxpython/gui_modules/menuform.py
Log:
wxGUI: Stop button should not be active until the module starts running, trac #219

Modified: grass/trunk/gui/wxpython/gui_modules/menuform.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/menuform.py	2008-07-05 13:26:40 UTC (rev 32001)
+++ grass/trunk/gui/wxpython/gui_modules/menuform.py	2008-07-05 20:08:07 UTC (rev 32002)
@@ -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