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

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Dec 12 04:52:30 PST 2012


Author: martinl
Date: 2012-12-12 04:52:30 -0800 (Wed, 12 Dec 2012)
New Revision: 54266

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


Modified: grass/trunk/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/dialogs.py	2012-12-11 21:16:47 UTC (rev 54265)
+++ grass/trunk/gui/wxpython/gui_core/dialogs.py	2012-12-12 12:52:30 UTC (rev 54266)
@@ -1024,6 +1024,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