Skip to content

Commit dfa8967

Browse files
authored
Fixes #5080. WindowsDriver isn't showing the cursor after exit (#5081)
1 parent f12f771 commit dfa8967

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Terminal.Gui/Drivers/WindowsDriver/WindowsOutput.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,9 @@ public void Dispose ()
630630
{
631631
//Disable alternative screen buffer.
632632
Console.Out.Write (EscSeqUtils.CSI_RestoreCursorAndRestoreAltBufferWithBackscroll);
633+
634+
//Set cursor key to cursor.
635+
Write (EscSeqUtils.CSI_ShowCursor);
633636
}
634637
else
635638
{

0 commit comments

Comments
 (0)