Revert "Fixed render issue where writeline inside status caused corrupt output #415 #694"

This reverts commit 71a5d83067.

The commit introduced major flickering when working with LiveRenderables

Fixes #1466
This commit is contained in:
Phil Scott
2024-04-01 11:36:38 -04:00
committed by Patrik Svensson
parent 1a3249cdae
commit fc0b553a4a
4 changed files with 3 additions and 41 deletions

View File

@ -49,7 +49,7 @@ internal sealed class LiveRenderable : Renderable
}
var linesToMoveUp = _shape.Value.Height - 1;
return new ControlCode("\r" + (EL(2) + CUU(1)).Repeat(linesToMoveUp));
return new ControlCode("\r" + CUU(linesToMoveUp));
}
}