From b960eb66356df7b04867a79ebc341640591f9cf3 Mon Sep 17 00:00:00 2001 From: tfmoraes Date: Mon, 15 Oct 2012 18:14:21 +0000 Subject: [PATCH] FIX: moved the undo and redo icons next to save and open icons --- invesalius/gui/frame.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/invesalius/gui/frame.py b/invesalius/gui/frame.py index a2f6b58..feb7985 100755 --- a/invesalius/gui/frame.py +++ b/invesalius/gui/frame.py @@ -162,16 +162,16 @@ class Frame(wx.Frame): # compared to linux2 & darwin if sys.platform == 'win32': t1 = ProjectToolBar(self) - t2 = LayoutToolBar(self) - t3 = ObjectToolBar(self) - t4 = SliceToolBar(self) - t5 = HistoryToolBar(self) + t2 = HistoryToolBar(self) + t3 = LayoutToolBar(self) + t4 = ObjectToolBar(self) + t5 = SliceToolBar(self) else: t5 = ProjectToolBar(self) - t4 = LayoutToolBar(self) - t3 = ObjectToolBar(self) - t2 = SliceToolBar(self) - t1 = HistoryToolBar(self) + t4 = HistoryToolBar(self) + t3 = LayoutToolBar(self) + t2 = ObjectToolBar(self) + t1 = SliceToolBar(self) aui_manager.AddPane(t1, wx.aui.AuiPaneInfo(). Name("General Features Toolbar"). -- libgit2 0.21.2