Browse Source

wxNviz: move nviz toolbar to the end of row

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47900 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 13 years ago
parent
commit
4239cc43e0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/wxgui.py

+ 1 - 1
gui/wxpython/wxgui.py

@@ -286,7 +286,7 @@ class GMFrame(wx.Frame):
         # show toolbar
         # show toolbar
         self._auimgr.GetPane('toolbarNviz').Show()
         self._auimgr.GetPane('toolbarNviz').Show()
         # reorder other toolbars
         # reorder other toolbars
-        for pos, toolbar in enumerate(('toolbarNviz', 'toolbarVector', 'toolbarTools', 'toolbarMisc')):
+        for pos, toolbar in enumerate(('toolbarVector', 'toolbarTools', 'toolbarMisc','toolbarNviz')):
             self._auimgr.GetPane(toolbar).Row(2).Position(pos)
             self._auimgr.GetPane(toolbar).Row(2).Position(pos)
         self._auimgr.Update()
         self._auimgr.Update()