mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-02 01:03:29 +01:00
PositionCursor unit tests and flashing cursor fixes
This commit is contained in:
@@ -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++)
|
||||
|
||||
Reference in New Issue
Block a user