From 46983d43bf63b3c5b90951dc67faef1b270b6a04 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Tue, 20 Feb 2018 23:08:18 -0500 Subject: [PATCH] Implement the NetDriver.End method, fixes #56 --- Terminal.Gui/Driver.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Terminal.Gui/Driver.cs b/Terminal.Gui/Driver.cs index 77d92a7fd..bc337eda5 100644 --- a/Terminal.Gui/Driver.cs +++ b/Terminal.Gui/Driver.cs @@ -901,7 +901,8 @@ namespace Terminal.Gui { public override void End () { - + Console.ResetColor (); + Console.Clear (); } static Attribute MakeColor (ConsoleColor f, ConsoleColor b)