From 50015ac6da3a004fa2b7f77d545518f17cc45a4f Mon Sep 17 00:00:00 2001 From: BDisp Date: Fri, 25 Jul 2025 11:39:08 +0100 Subject: [PATCH] Revert to iteration which will handle the necessary processes --- Terminal.Gui/App/Application.Run.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Terminal.Gui/App/Application.Run.cs b/Terminal.Gui/App/Application.Run.cs index eafe91f14..8758e44b3 100644 --- a/Terminal.Gui/App/Application.Run.cs +++ b/Terminal.Gui/App/Application.Run.cs @@ -212,7 +212,8 @@ public static partial class Application // Run (Begin, Run, End, Stop) NotifyNewRunState?.Invoke (toplevel, new (rs)); - LayoutAndDraw (true); + // Force an Idle event so that an Iteration (and Refresh) happen. + Invoke (() => { }); return rs; }