From 3093e849c094066434a2e995a98b936e929f4d47 Mon Sep 17 00:00:00 2001 From: MikeFH Date: Sat, 13 Mar 2021 10:56:23 +0100 Subject: [PATCH] Fix insertion of result at end position --- ILSpy/Search/SearchPane.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ILSpy/Search/SearchPane.cs b/ILSpy/Search/SearchPane.cs index 5ad005cce..d877e55eb 100644 --- a/ILSpy/Search/SearchPane.cs +++ b/ILSpy/Search/SearchPane.cs @@ -269,7 +269,7 @@ namespace ICSharpCode.ILSpy return; } } - results.Insert(results.Count - 1, result); + results.Add(result); } else {