Skip to content

Commit

Permalink
imp - Clear screen with correct color mode
Browse files Browse the repository at this point in the history
---

Apparently, one of the changes made during the sixth major version
development caused Console.Clear() to clear the screen with wrong color
information. We've changed the way we clear the screen so that the
terminal emits the clear screen VT sequence.

---

Type: imp
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Jan 8, 2025
1 parent 0fa006e commit 5a6099a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/Terminaux/Base/ConsoleWrapperTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ private static void BeepSeq() =>
Write(VtSequenceBasicChars.BellChar);

private static void Clear() =>
Console.Clear();
Write(ConsoleClearing.GetClearWholeScreenSequence());

private static void ClearLoadBack()
{
Expand Down

0 comments on commit 5a6099a

Please sign in to comment.