[GRASS-SVN] r58793 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jan 28 08:19:38 PST 2014


Author: annakrat
Date: 2014-01-28 08:19:38 -0800 (Tue, 28 Jan 2014)
New Revision: 58793

Modified:
   grass/trunk/gui/wxpython/gui_core/forms.py
Log:
wxGUI/forms: do not create help flag checkbox

Modified: grass/trunk/gui/wxpython/gui_core/forms.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/forms.py	2014-01-28 15:40:49 UTC (rev 58792)
+++ grass/trunk/gui/wxpython/gui_core/forms.py	2014-01-28 16:19:38 UTC (rev 58793)
@@ -860,6 +860,9 @@
         #
         visible_flags = [ f for f in self.task.flags if not f.get('hidden', False) == True ]
         for f in visible_flags:
+            # we don't want another help (checkbox appeared in r58783)
+            if f['name'] == 'help':
+                continue
             which_sizer = tabsizer[ f['guisection'] ]
             which_panel = tab[ f['guisection'] ]
             # if label is given: description -> tooltip



More information about the grass-commit mailing list