From 416db4296b7ec0b5873fd0dd00a929821022c01e Mon Sep 17 00:00:00 2001 From: BDisp Date: Tue, 9 Jun 2020 21:49:26 +0100 Subject: [PATCH] Fixes #659 View.Redraw clipping issue. --- Terminal.Gui/Core/View.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Terminal.Gui/Core/View.cs b/Terminal.Gui/Core/View.cs index 02e577927..5ac6109e9 100644 --- a/Terminal.Gui/Core/View.cs +++ b/Terminal.Gui/Core/View.cs @@ -984,15 +984,10 @@ namespace Terminal.Gui { view.LayoutSubviews (); Application.CurrentView = view; - // Clip the sub-view - var savedClip = view.ClipToBounds (); - // Draw the subview // Use the view's bounds (view-relative; Location will always be (0,0) because view.Redraw (view.Bounds); - // Undo the clip - Driver.Clip = savedClip; } view.NeedDisplay = Rect.Empty; view.childNeedsDisplay = false;