From cf35c58a0f427e6eccc24e9b5bff01c2acb69dd8 Mon Sep 17 00:00:00 2001 From: BDisp Date: Sun, 21 Apr 2024 23:50:09 +0100 Subject: [PATCH] Fixes #3423. v1 - Wizards scenario doesn't refresh after opened by mouse. --- Terminal.Gui/Core/Application.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Terminal.Gui/Core/Application.cs b/Terminal.Gui/Core/Application.cs index a7ed8cdce..52343079b 100644 --- a/Terminal.Gui/Core/Application.cs +++ b/Terminal.Gui/Core/Application.cs @@ -1040,9 +1040,7 @@ namespace Terminal.Gui { if (refreshDriver) { MdiTop?.OnChildLoaded (toplevel); toplevel.OnLoaded (); - Redraw (toplevel); - toplevel.PositionCursor (); - Driver.Refresh (); + Refresh (); } NotifyNewRunState?.Invoke (rs);