Browse Source

Merge pull request #2333 from MikeFH/fix-insertresult

Fix insertion of result at end position
pull/2335/head
Siegfried Pammer 4 years ago committed by GitHub
parent
commit
026964fa11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ILSpy/Search/SearchPane.cs

2
ILSpy/Search/SearchPane.cs

@ -269,7 +269,7 @@ namespace ICSharpCode.ILSpy @@ -269,7 +269,7 @@ namespace ICSharpCode.ILSpy
return;
}
}
results.Insert(results.Count - 1, result);
results.Add(result);
}
else
{

Loading…
Cancel
Save