Browse Source

fixed issue with missing results

pull/668/head
Ondrej Petrzilka 9 years ago
parent
commit
5261d73b9a
  1. 3
      ILSpy/SearchPane.cs

3
ILSpy/SearchPane.cs

@ -257,9 +257,10 @@ namespace ICSharpCode.ILSpy @@ -257,9 +257,10 @@ namespace ICSharpCode.ILSpy
if (this.Results[i].Fitness < result.Fitness)
{
this.Results.Insert(i, result);
break;
return;
}
}
this.Results.Insert(this.Results.Count - 1, result);
}
else
{

Loading…
Cancel
Save