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; }