mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-02 01:03:29 +01:00
Fixes wide runes not render well on NetDriver.
This commit is contained in:
@@ -1451,13 +1451,13 @@ namespace Terminal.Gui {
|
||||
dirtyLine [row] = false;
|
||||
System.Text.StringBuilder output = new System.Text.StringBuilder ();
|
||||
for (int col = 0; col < cols; col++) {
|
||||
if (contents [row, col, 2] != 1) {
|
||||
continue;
|
||||
}
|
||||
if (Console.WindowHeight > 0 && !SetCursorPosition (col, row)) {
|
||||
return;
|
||||
}
|
||||
for (; col < cols; col++) {
|
||||
if (contents [row, col, 2] != 1) {
|
||||
continue;
|
||||
}
|
||||
var attr = contents [row, col, 1];
|
||||
if (attr != redrawAttr) {
|
||||
output.Append (WriteAttributes (attr));
|
||||
|
||||
Reference in New Issue
Block a user