Commit b960eb66356df7b04867a79ebc341640591f9cf3
1 parent
f608e9ff
Exists in
master
and in
65 other branches
FIX: moved the undo and redo icons next to save and open icons
Showing
1 changed file
with
8 additions
and
8 deletions
Show diff stats
invesalius/gui/frame.py
... | ... | @@ -162,16 +162,16 @@ class Frame(wx.Frame): |
162 | 162 | # compared to linux2 & darwin |
163 | 163 | if sys.platform == 'win32': |
164 | 164 | t1 = ProjectToolBar(self) |
165 | - t2 = LayoutToolBar(self) | |
166 | - t3 = ObjectToolBar(self) | |
167 | - t4 = SliceToolBar(self) | |
168 | - t5 = HistoryToolBar(self) | |
165 | + t2 = HistoryToolBar(self) | |
166 | + t3 = LayoutToolBar(self) | |
167 | + t4 = ObjectToolBar(self) | |
168 | + t5 = SliceToolBar(self) | |
169 | 169 | else: |
170 | 170 | t5 = ProjectToolBar(self) |
171 | - t4 = LayoutToolBar(self) | |
172 | - t3 = ObjectToolBar(self) | |
173 | - t2 = SliceToolBar(self) | |
174 | - t1 = HistoryToolBar(self) | |
171 | + t4 = HistoryToolBar(self) | |
172 | + t3 = LayoutToolBar(self) | |
173 | + t2 = ObjectToolBar(self) | |
174 | + t1 = SliceToolBar(self) | |
175 | 175 | |
176 | 176 | aui_manager.AddPane(t1, wx.aui.AuiPaneInfo(). |
177 | 177 | Name("General Features Toolbar"). | ... | ... |