浏览代码

Merge pull request #828 from BDisp/reset-initialized

Fixes #827. Application now reset _initialized on Shutdown.
Charlie Kindel 5 年之前
父节点
当前提交
3c8107f615
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Terminal.Gui/Core/Application.cs

+ 1 - 0
Terminal.Gui/Core/Application.cs

@@ -506,6 +506,7 @@ namespace Terminal.Gui {
 			MainLoop = null;
 			Driver?.End ();
 			Driver = null;
+			_initialized = false;
 		}
 
 		static void Redraw (View view)