From 4e4b1e5a648f906abb5ecf263f9f783a7d26057f Mon Sep 17 00:00:00 2001 From: Tigger Kindel Date: Thu, 20 Jul 2023 12:17:44 -0600 Subject: [PATCH] Removed [0J from End() --- Terminal.Gui/ConsoleDrivers/WindowsDriver.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs index aa569bc57..ab797d6a5 100644 --- a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs @@ -1701,13 +1701,6 @@ namespace Terminal.Gui { // Disable alternative screen buffer. Console.Out.Write ("\x1b[?1047l"); - - // Needed for Windows Terminal - // Clear the alternative screen buffer from the cursor to the - // end of the screen. - // Note, [3J causes Windows Terminal to wipe out the entire NON ALTERNATIVE - // backbuffer! So we need to use [0J instead. - Console.Out.Write ("\x1b[0J"); } ///