Skip to content

Commit 14af144

Browse files
committed
Merge pull request #1140 from Neverbirth/development
Fix Results display
2 parents 228759a + 7ff8356 commit 14af144

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)