Skip to content

Commit 4168788

Browse files
committed
change item order to match order in Settings -Windows
1 parent c185c81 commit 4168788

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Rubberduck.Core/UI/Command/MenuItems/ParentMenus/WindowParentMenu.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ public WindowParentMenu(IEnumerable<IMenuItem> items, IUiDispatcher dispatcher)
1515

1616
public enum WindowMenuItemDisplayOrder
1717
{
18-
TestExplorer,
19-
CodeExplorer,
20-
CodeMetrics,
21-
ToDoExplorer
18+
CodeExplorer,
19+
CodeMetrics,
20+
TestExplorer,
21+
ToDoExplorer
2222
}
2323
}

Rubberduck.Main/Root/RubberduckIoCInstaller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,9 +814,9 @@ private Type[] WindowMenuItems()
814814
{
815815
var items = new List<Type>
816816
{
817-
typeof(TestExplorerCommandMenuItem),
818817
typeof(CodeExplorerCommandMenuItem),
819818
typeof(CodeMetricsCommandMenuItem),
819+
typeof(TestExplorerCommandMenuItem),
820820
typeof(ToDoExplorerCommandMenuItem)
821821
};
822822

0 commit comments

Comments
 (0)