[GRASS-SVN] r66230 - grass/trunk/gui/wxpython/datacatalog

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Sep 14 20:05:39 PDT 2015


Author: annakrat
Date: 2015-09-14 20:05:38 -0700 (Mon, 14 Sep 2015)
New Revision: 66230

Modified:
   grass/trunk/gui/wxpython/datacatalog/tree.py
Log:
wxGUI/datacatalog: fix tree rendering on Windows

Modified: grass/trunk/gui/wxpython/datacatalog/tree.py
===================================================================
--- grass/trunk/gui/wxpython/datacatalog/tree.py	2015-09-14 19:19:29 UTC (rev 66229)
+++ grass/trunk/gui/wxpython/datacatalog/tree.py	2015-09-15 03:05:38 UTC (rev 66230)
@@ -32,7 +32,7 @@
 import grass.script as grass
 
 class LocationMapTree(wx.TreeCtrl):
-    def __init__(self, parent, style=wx.TR_HIDE_ROOT | wx.TR_EDIT_LABELS | 
+    def __init__(self, parent, style=wx.TR_HIDE_ROOT | wx.TR_EDIT_LABELS | wx.TR_LINES_AT_ROOT |
                  wx.TR_HAS_BUTTONS | wx.TR_FULL_ROW_HIGHLIGHT | wx.TR_SINGLE):
         """Location Map Tree constructor."""
         super(LocationMapTree, self).__init__(parent, id=wx.ID_ANY, style=style)



More information about the grass-commit mailing list