Skip to content

Commit 484a41d

Browse files
INOPIAEretailcoder
authored andcommitted
change item order to match order in Settings -Windows
1 parent f11b16d commit 484a41d

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ public WindowParentMenu(IEnumerable<IMenuItem> items, IUiDispatcher dispatcher)
1616
public enum WindowMenuItemDisplayOrder
1717
{
1818
CodeExplorer,
19-
CodeInspections,
2019
CodeMetrics,
21-
FindSymbol,
22-
FindAllReferences,
23-
FindAllImplementations ,
2420
TestExplorer,
2521
ToDoExplorer
2622
}

Rubberduck.Main/Root/RubberduckIoCInstaller.cs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -814,14 +814,10 @@ private Type[] WindowMenuItems()
814814
{
815815
var items = new List<Type>
816816
{
817-
typeof(WindowsCodeExplorerCommandMenuItem),
818-
typeof(WindowsInspectionResultsCommandMenuItem),
819-
typeof(WindowsCodeMetricsCommandMenuItem),
820-
typeof(WindowsFindSymbolCommandMenuItem),
821-
typeof(WindowsFindAllReferencesCommandMenuItem),
822-
typeof(WindowsFindAllImplementationsCommandMenuItem),
823-
typeof(WindowsTestExplorerCommandMenuItem),
824-
typeof(WindowsToDoExplorerCommandMenuItem)
817+
typeof(CodeExplorerCommandMenuItem),
818+
typeof(CodeMetricsCommandMenuItem),
819+
typeof(TestExplorerCommandMenuItem),
820+
typeof(ToDoExplorerCommandMenuItem)
825821
};
826822

827823
return items.ToArray();

0 commit comments

Comments
 (0)