Commit 68351f8 1 parent 7f81a3d commit 68351f8 Copy full SHA for 68351f8
File tree 1 file changed +4
-4
lines changed
src/Build/Logging/TerminalLogger
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1064,14 +1064,14 @@ private void ThreadProc()
1064
1064
count ++ ;
1065
1065
lock ( _lock )
1066
1066
{
1067
- if ( count > 30 )
1067
+ if ( count >= 30 )
1068
1068
{
1069
1069
count = 0 ;
1070
- DisplayNodes ( true ) ;
1070
+ DisplayNodes ( ) ;
1071
1071
}
1072
1072
else
1073
1073
{
1074
- DisplayNodes ( ) ;
1074
+ DisplayNodes ( false ) ;
1075
1075
}
1076
1076
}
1077
1077
}
@@ -1083,7 +1083,7 @@ private void ThreadProc()
1083
1083
/// Render Nodes section.
1084
1084
/// It shows what all build nodes do.
1085
1085
/// </summary>
1086
- internal void DisplayNodes ( bool updateSize = false )
1086
+ internal void DisplayNodes ( bool updateSize = true )
1087
1087
{
1088
1088
var width = updateSize ? Terminal . Width : _currentFrame . Width ;
1089
1089
var height = updateSize ? Terminal . Height : _currentFrame . Height ;
You can’t perform that action at this time.
0 commit comments