浏览代码

Implement the NetDriver.End method, fixes #56

Miguel de Icaza 7 年之前
父节点
当前提交
46983d43bf
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      Terminal.Gui/Driver.cs

+ 2 - 1
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)