mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +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;
|
||||
|
||||
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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user