mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
That method returns a nullable result
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
namespace Terminal.Gui;
|
namespace Terminal.Gui;
|
||||||
@@ -580,7 +580,7 @@ public partial class View
|
|||||||
|
|
||||||
if (v.Visible && v.Frame.Contains (rx, ry))
|
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)
|
if (deep is null)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user