Skip to content

Commit 7ff8356

Browse files
committed
Fix Results display with more than 1000 entries in one queue and starting offset bigger than 0.
1 parent 228759a commit 7ff8356

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

External/Plugins/ResultsPanel/PluginUI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ public void AddLogEntries()
647647
String projectDir = project != null ? Path.GetDirectoryName(project.ProjectPath) : "";
648648
Boolean limitMode = (count - this.logCount) > 1000;
649649
this.entriesView.BeginUpdate();
650-
for (Int32 i = this.logCount; i < (limitMode ? 1000 : count); i++)
650+
for (Int32 i = this.logCount; i < (limitMode ? this.logCount + 1000 : count); i++)
651651
{
652652
entry = TraceManager.TraceLog[i];
653653
if (entry.Message != null && entry.Message.Length > 7 && entry.Message.IndexOf(':') > 0)

0 commit comments

Comments
 (0)