Skip to content

Commit 68351f8

Browse files
committed
default change
1 parent 7f81a3d commit 68351f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Build/Logging/TerminalLogger/TerminalLogger.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1064,14 +1064,14 @@ private void ThreadProc()
10641064
count++;
10651065
lock (_lock)
10661066
{
1067-
if (count > 30)
1067+
if (count >= 30)
10681068
{
10691069
count = 0;
1070-
DisplayNodes(true);
1070+
DisplayNodes();
10711071
}
10721072
else
10731073
{
1074-
DisplayNodes();
1074+
DisplayNodes(false);
10751075
}
10761076
}
10771077
}
@@ -1083,7 +1083,7 @@ private void ThreadProc()
10831083
/// Render Nodes section.
10841084
/// It shows what all build nodes do.
10851085
/// </summary>
1086-
internal void DisplayNodes(bool updateSize = false)
1086+
internal void DisplayNodes(bool updateSize = true)
10871087
{
10881088
var width = updateSize ? Terminal.Width : _currentFrame.Width;
10891089
var height = updateSize ? Terminal.Height : _currentFrame.Height;

0 commit comments

Comments
 (0)