From e653be2c5f7beaa3cecde4b8be7ca119fabda7f9 Mon Sep 17 00:00:00 2001 From: Brandon Thetford Date: Wed, 21 Feb 2024 00:25:16 -0700 Subject: [PATCH] That method returns a nullable result --- Terminal.Gui/View/Layout/ViewLayout.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Terminal.Gui/View/Layout/ViewLayout.cs b/Terminal.Gui/View/Layout/ViewLayout.cs index 733cac590..f3945fdd1 100644 --- a/Terminal.Gui/View/Layout/ViewLayout.cs +++ b/Terminal.Gui/View/Layout/ViewLayout.cs @@ -1,4 +1,4 @@ -using System.ComponentModel; +using System.ComponentModel; using System.Diagnostics; namespace Terminal.Gui; @@ -580,7 +580,7 @@ public partial class View if (v.Visible && v.Frame.Contains (rx, ry)) { - View deep = FindDeepestView (v, rx, ry, out resultX, out resultY); + View? deep = FindDeepestView (v, rx, ry, out resultX, out resultY); if (deep is null) {