[GRASS-SVN] r55106 - grass/branches/releasebranch_6_4/gui/wxpython/dbmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Feb 18 00:35:28 PST 2013


Author: hamish
Date: 2013-02-18 00:35:28 -0800 (Mon, 18 Feb 2013)
New Revision: 55106

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/dbmgr/manager.py
Log:
reapply r50701 which was lost in a bulk merge: "temporarily disable editing on WinGrass as it locks up the GUI (#1270)"

Modified: grass/branches/releasebranch_6_4/gui/wxpython/dbmgr/manager.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/dbmgr/manager.py	2013-02-18 04:09:33 UTC (rev 55105)
+++ grass/branches/releasebranch_6_4/gui/wxpython/dbmgr/manager.py	2013-02-18 08:35:28 UTC (rev 55106)
@@ -561,7 +561,11 @@
             self.editable = True
         else:
             self.editable = False
-        
+
+        # FIXME: editing is currently broken on wingrass (bug #1270)
+        if sys.platform == 'win32':
+            self.editable = False
+
         self.cmdLog = log    # self.parent.goutput
         
         wx.Frame.__init__(self, parent, id, *kwargs)



More information about the grass-commit mailing list