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

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Sep 16 14:33:57 PDT 2013


Author: turek
Date: 2013-09-16 14:33:57 -0700 (Mon, 16 Sep 2013)
New Revision: 57710

Modified:
   grass/trunk/gui/wxpython/gui_core/dialogs.py
Log:
GroupDialog bug fix

Modified: grass/trunk/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/dialogs.py	2013-09-16 21:31:59 UTC (rev 57709)
+++ grass/trunk/gui/wxpython/gui_core/dialogs.py	2013-09-16 21:33:57 UTC (rev 57710)
@@ -524,7 +524,8 @@
         self.defaultGroup = defaultGroup
         self.currentGroup = self.defaultGroup
         self.dataChanged = False
-        
+        self.edit_subg = False
+
         self.bodySizer = self._createDialogBody()
         
         # buttons
@@ -572,7 +573,6 @@
         # hide panel with subgroup, after min size is set
         self.subg_panel.Hide()
 
-
     def _createDialogBody(self):
         bodySizer = wx.BoxSizer(wx.VERTICAL)
     
@@ -609,7 +609,6 @@
         self.subg_panel.SetSizer(subg_sizer)
 
         bodySizer.Add(item = self.subg_panel, flag = wx.TOP | wx.EXPAND, border = 5)
-
         
         bodySizer.AddSpacer(10)
         # layers in group



More information about the grass-commit mailing list