mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
Fixes #3527. v1 CursesDriver isn't updating the buffer on the UpdateOffScreen method.
This commit is contained in:
@@ -752,9 +752,9 @@ namespace Terminal.Gui {
|
||||
contents = new int [Rows, Cols, 3];
|
||||
for (int row = 0; row < Rows; row++) {
|
||||
for (int col = 0; col < Cols; col++) {
|
||||
//Curses.move (row, col);
|
||||
//Curses.attrset (Colors.TopLevel.Normal);
|
||||
//Curses.addch ((int)(uint)' ');
|
||||
Curses.move (row, col);
|
||||
Curses.attrset (Colors.TopLevel.Normal);
|
||||
Curses.addch ((int)(uint)' ');
|
||||
contents [row, col, 0] = ' ';
|
||||
contents [row, col, 1] = Colors.TopLevel.Normal;
|
||||
contents [row, col, 2] = 0;
|
||||
|
||||
Reference in New Issue
Block a user