[GRASS-SVN] r44163 -
grass/branches/releasebranch_6_4/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Nov 1 21:21:43 EDT 2010
Author: martinl
Date: 2010-11-01 18:21:43 -0700 (Mon, 01 Nov 2010)
New Revision: 44163
Modified:
grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/menuform.py
Log:
wxGUI/dialog: fix --v/q flags
(merge r44162 from trunk)
Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/menuform.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/menuform.py 2010-11-02 01:19:24 UTC (rev 44162)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/menuform.py 2010-11-02 01:21:43 UTC (rev 44163)
@@ -1677,8 +1677,8 @@
def OnVerbosity(self, event):
"""!Verbosity level changed"""
- verbose = self.FindWindowById(self.task.get_flag('verbose')['wxId'])
- quiet = self.FindWindowById(self.task.get_flag('quiet')['wxId'])
+ verbose = self.FindWindowById(self.task.get_flag('verbose')['wxId'][0])
+ quiet = self.FindWindowById(self.task.get_flag('quiet')['wxId'][0])
if event.IsChecked():
if event.GetId() == verbose.GetId():
if quiet.IsChecked():
More information about the grass-commit
mailing list