[GRASS-SVN] r58331 - grass/trunk/gui/wxpython/lmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Nov 29 05:29:45 PST 2013


Author: martinl
Date: 2013-11-29 05:29:45 -0800 (Fri, 29 Nov 2013)
New Revision: 58331

Modified:
   grass/trunk/gui/wxpython/lmgr/frame.py
Log:
wxGUI: avoid double-rendering when loading workspace

Modified: grass/trunk/gui/wxpython/lmgr/frame.py
===================================================================
--- grass/trunk/gui/wxpython/lmgr/frame.py	2013-11-29 13:00:01 UTC (rev 58330)
+++ grass/trunk/gui/wxpython/lmgr/frame.py	2013-11-29 13:29:45 UTC (rev 58331)
@@ -1200,7 +1200,8 @@
         busy.Destroy()
             
         for idx, mdisp in enumerate(mapdisplay):
-            mdisp.MapWindow2D.UpdateMap()
+            ### avoid double-rendering when loading workspace
+            ### mdisp.MapWindow2D.UpdateMap()
             # nviz
             if gxwXml.displays[idx]['viewMode'] == '3d':
                 mdisp.AddNviz()



More information about the grass-commit mailing list