Skip to content

Commit af73e85

Browse files
committed
Navigation list forward sort order
1 parent 6a10b33 commit af73e85

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ILSpy/Commands/BrowseForwardCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
using System.Collections;
2020
using System.Composition;
21+
using System.Linq;
2122
using System.Windows.Input;
2223

2324
using ICSharpCode.ILSpy.AssemblyTree;
@@ -54,7 +55,7 @@ protected override void OnExecute(object sender, ExecutedRoutedEventArgs e)
5455
}
5556
}
5657

57-
public IEnumerable ParameterList => assemblyTreeModel.GetNavigateHistory(true);
58+
public IEnumerable ParameterList => assemblyTreeModel.GetNavigateHistory(true).Reverse();
5859

5960
public object GetParamaterText(object parameter)
6061
{

0 commit comments

Comments
 (0)