[GRASS-SVN] r54267 - grass/branches/develbranch_6/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Dec 12 04:57:07 PST 2012


Author: martinl
Date: 2012-12-12 04:57:06 -0800 (Wed, 12 Dec 2012)
New Revision: 54267

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_core/dialogs.py
Log:
wxGUI: enable subgroup by default (most of imagery modules require subgroup to be set)
       (merge r54266 from trunk)


Modified: grass/branches/develbranch_6/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_core/dialogs.py	2012-12-12 12:52:30 UTC (rev 54266)
+++ grass/branches/develbranch_6/gui/wxpython/gui_core/dialogs.py	2012-12-12 12:57:06 UTC (rev 54267)
@@ -965,6 +965,7 @@
         
         self.subGroup = wx.CheckBox(parent = self, id = wx.ID_ANY,
                                     label = _("Define also sub-group (same name as group)"))
+        self.subGroup.SetValue(True) # most of imagery modules requires also subgroup
         bodySizer.Add(item = self.subGroup, flag = wx.BOTTOM | wx.EXPAND, border = 5)
         
         # bindings



More information about the grass-commit mailing list