[GRASS-SVN] r49586 - grass/trunk/gui/wxpython/modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Dec 6 20:03:09 EST 2011
Author: martinl
Date: 2011-12-06 17:03:09 -0800 (Tue, 06 Dec 2011)
New Revision: 49586
Modified:
grass/trunk/gui/wxpython/modules/extensions.py
Log:
wxGUI/extensions: ignore flag 'f'
Modified: grass/trunk/gui/wxpython/modules/extensions.py
===================================================================
--- grass/trunk/gui/wxpython/modules/extensions.py 2011-12-07 00:53:03 UTC (rev 49585)
+++ grass/trunk/gui/wxpython/modules/extensions.py 2011-12-07 01:03:09 UTC (rev 49586)
@@ -69,7 +69,7 @@
desc = f.get('description', '')
if not name and not desc:
continue
- if name in ('l', 'c', 'g', 'quiet', 'verbose'):
+ if name in ('l', 'c', 'g', 'f', 'quiet', 'verbose'):
continue
self.options[name] = wx.CheckBox(parent = self.panel, id = wx.ID_ANY,
label = desc)
More information about the grass-commit
mailing list