From af73e85f9566a92264ac5ea8018dcb439f23b35e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ku=C4=8Dera?= Date: Sat, 11 Oct 2025 14:16:58 +0100 Subject: [PATCH] Navigation list forward sort order --- ILSpy/Commands/BrowseForwardCommand.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ILSpy/Commands/BrowseForwardCommand.cs b/ILSpy/Commands/BrowseForwardCommand.cs index 74b42a1cd..919ecdea0 100644 --- a/ILSpy/Commands/BrowseForwardCommand.cs +++ b/ILSpy/Commands/BrowseForwardCommand.cs @@ -18,6 +18,7 @@ using System.Collections; using System.Composition; +using System.Linq; using System.Windows.Input; using ICSharpCode.ILSpy.AssemblyTree; @@ -54,7 +55,7 @@ namespace ICSharpCode.ILSpy } } - public IEnumerable ParameterList => assemblyTreeModel.GetNavigateHistory(true); + public IEnumerable ParameterList => assemblyTreeModel.GetNavigateHistory(true).Reverse(); public object GetParamaterText(object parameter) {