From c8fafbcb1a569996c83c493d875bd8f152cc0f6c Mon Sep 17 00:00:00 2001 From: Tig Date: Thu, 4 Dec 2025 17:06:31 -0700 Subject: [PATCH] Update Terminal.Gui/ViewBase/View.NeedsDraw.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Terminal.Gui/ViewBase/View.NeedsDraw.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Terminal.Gui/ViewBase/View.NeedsDraw.cs b/Terminal.Gui/ViewBase/View.NeedsDraw.cs index b4dee8763..f0503d668 100644 --- a/Terminal.Gui/ViewBase/View.NeedsDraw.cs +++ b/Terminal.Gui/ViewBase/View.NeedsDraw.cs @@ -19,9 +19,6 @@ public partial class View /// Will be if the property is or if /// any part of the view's needs to be redrawn. /// - /// - /// Setting has no effect on . - /// /// public bool NeedsDraw => Visible && (NeedsDrawRect != Rectangle.Empty || Margin?.NeedsDraw == true || Border?.NeedsDraw == true || Padding?.NeedsDraw == true);