[GRASS-SVN] r46261 - grass/branches/develbranch_6/gui/wxpython
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat May 14 03:57:03 EDT 2011
Author: martinl
Date: 2011-05-14 00:57:03 -0700 (Sat, 14 May 2011)
New Revision: 46261
Modified:
grass/branches/develbranch_6/gui/wxpython/wxgui.py
Log:
wxGUI: fix toolbars names
(merge r46260 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/wxgui.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/wxgui.py 2011-05-14 07:49:38 UTC (rev 46260)
+++ grass/branches/develbranch_6/gui/wxpython/wxgui.py 2011-05-14 07:57:03 UTC (rev 46261)
@@ -134,7 +134,7 @@
# self.SetToolBar(self.toolbar)
self._auimgr.AddPane(self.toolbars['main'],
wx.aui.AuiPaneInfo().
- Name("toolbar").Caption(_("Main Toolbar")).
+ Name("toolbarMain").Caption(_("Main Toolbar")).
ToolbarPane().Top().
LeftDockable(False).RightDockable(False).
BottomDockable(False).TopDockable(True).
@@ -142,7 +142,7 @@
BestSize((self.toolbars['main'].GetSize())))
self._auimgr.AddPane(self.toolbars['tools'],
wx.aui.AuiPaneInfo().
- Name("toolbar").Caption(_("Tools Toolbar")).
+ Name("toolbarTools").Caption(_("Tools Toolbar")).
ToolbarPane().Top().
LeftDockable(False).RightDockable(False).
BottomDockable(False).TopDockable(True).
More information about the grass-commit
mailing list