We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c2d51a + 14af144 commit c80cde2Copy full SHA for c80cde2
External/Plugins/ResultsPanel/PluginUI.cs
@@ -647,7 +647,7 @@ public void AddLogEntries()
647
String projectDir = project != null ? Path.GetDirectoryName(project.ProjectPath) : "";
648
Boolean limitMode = (count - this.logCount) > 1000;
649
this.entriesView.BeginUpdate();
650
- for (Int32 i = this.logCount; i < (limitMode ? 1000 : count); i++)
+ for (Int32 i = this.logCount; i < (limitMode ? this.logCount + 1000 : count); i++)
651
{
652
entry = TraceManager.TraceLog[i];
653
if (entry.Message != null && entry.Message.Length > 7 && entry.Message.IndexOf(':') > 0)
0 commit comments