Skip to content

Commit 04b336a

Browse files
committed
Try adding sixel to curses driver
1 parent c46cf78 commit 04b336a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,13 @@ public override void UpdateScreen ()
420420
}
421421
}
422422

423+
// SIXELS
424+
foreach (var s in Application.Sixel)
425+
{
426+
SetCursorPosition (s.ScreenPosition.X, s.ScreenPosition.Y);
427+
Console.Write(s.SixelData);
428+
}
429+
423430
SetCursorPosition (0, 0);
424431

425432
_currentCursorVisibility = savedVisibility;

0 commit comments

Comments
 (0)