From 344e55bc5d10775acb2833821337bd0a3bdf90bb Mon Sep 17 00:00:00 2001 From: Tig Date: Mon, 25 Nov 2024 20:18:14 -0700 Subject: [PATCH] fixed one other case --- Terminal.Gui/Application/Application.Screen.cs | 2 +- Terminal.Gui/View/View.Layout.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Terminal.Gui/Application/Application.Screen.cs b/Terminal.Gui/Application/Application.Screen.cs index 9edd29313..5a8f68407 100644 --- a/Terminal.Gui/Application/Application.Screen.cs +++ b/Terminal.Gui/Application/Application.Screen.cs @@ -75,5 +75,5 @@ public static partial class Application // Screen related stuff /// This is typicall set to true when a View's changes and that view has no /// SuperView (e.g. when is moved or resized. /// - public static bool ClearScreenNextIteratio { get; set; } + public static bool ClearScreenNextIteration { get; set; } } diff --git a/Terminal.Gui/View/View.Layout.cs b/Terminal.Gui/View/View.Layout.cs index 833d5bdb2..b0991711b 100644 --- a/Terminal.Gui/View/View.Layout.cs +++ b/Terminal.Gui/View/View.Layout.cs @@ -563,7 +563,7 @@ public partial class View // Layout APIs } else { - // Application.ClearScreenNextIteration = true; + Application.ClearScreenNextIteration = true; } }