Browse Source

Fix insertion of result at end position

pull/2333/head
MikeFH 4 years ago
parent
commit
3093e849c0
  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