Browse Source

Update and bug fixes for LayerTree drag and drop and controls

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@32470 15284696-431f-4ddb-bdfa-cd5b030d7da7
Michael Barton 16 years ago
parent
commit
963a08736e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/wxgui.py

+ 1 - 1
gui/wxpython/wxgui.py

@@ -1111,7 +1111,7 @@ class GMFrame(wx.Frame):
         # create layer tree (tree control for managing GIS layers)  and put on new notebook page
         self.curr_page.maptree = wxgui_utils.LayerTree(self.curr_page, id=wx.ID_ANY, pos=wx.DefaultPosition,
                                                        size=wx.DefaultSize, style=wx.TR_HAS_BUTTONS
-                                                       |wx.TR_LINES_AT_ROOT|wx.TR_EDIT_LABELS|wx.TR_HIDE_ROOT
+                                                       |wx.TR_LINES_AT_ROOT|wx.TR_HIDE_ROOT
                                                        |wx.TR_DEFAULT_STYLE|wx.NO_BORDER|wx.FULL_REPAINT_ON_RESIZE,
                                                        idx=self.disp_idx, gismgr=self, notebook=self.gm_cb,
                                                        auimgr=self._auimgr, showMapDisplay=show)