PositionCursor unit tests and flashing cursor fixes

This commit is contained in:
Tig
2024-05-07 10:07:14 -06:00
parent 2a00435c54
commit a1249198bd
37 changed files with 336 additions and 459 deletions

View File

@@ -214,9 +214,13 @@ internal class CursesDriver : ConsoleDriver
if (!RunningUnitTests && Col >= 0 && Col < Cols && Row >= 0 && Row < Rows)
{
Curses.move (Row, Col);
Curses.raw ();
Curses.noecho ();
Curses.refresh ();
}
}
public override void UpdateScreen ()
{
for (var row = 0; row < Rows; row++)