[GRASS-SVN] r44167 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Nov 2 10:41:01 EDT 2010
Author: martinl
Date: 2010-11-02 07:41:01 -0700 (Tue, 02 Nov 2010)
New Revision: 44167
Modified:
grass/trunk/gui/wxpython/gui_modules/goutput.py
Log:
wxGUI: don't parse r.mapcalc
(merge r44165 from devbr6)
Modified: grass/trunk/gui/wxpython/gui_modules/goutput.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/goutput.py 2010-11-02 14:39:53 UTC (rev 44166)
+++ grass/trunk/gui/wxpython/gui_modules/goutput.py 2010-11-02 14:41:01 UTC (rev 44167)
@@ -703,7 +703,8 @@
if self.parent.GetName() == "LayerManager":
self.btn_abort.Enable(False)
- if event.cmd[0] not in globalvar.grassCmd['all']:
+ if event.cmd[0] not in globalvar.grassCmd['all'] or \
+ event.cmd[0] == 'r.mapcalc':
return
display = self.parent.GetLayerTree().GetMapDisplay()
if not display or not display.IsAutoRendered():
More information about the grass-commit
mailing list