From e05fdc2b2f2bef4ddd560e309723acf33a61e2f1 Mon Sep 17 00:00:00 2001 From: Brandon Thetford Date: Wed, 21 Feb 2024 00:18:38 -0700 Subject: [PATCH] Turn on nullability analysis for this method --- Terminal.Gui/Application.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Terminal.Gui/Application.cs b/Terminal.Gui/Application.cs index a16d321d4..de86b2a76 100644 --- a/Terminal.Gui/Application.cs +++ b/Terminal.Gui/Application.cs @@ -1408,6 +1408,7 @@ public static partial class Application /// public static event EventHandler MouseEvent; + #nullable enable /// Called when a mouse event occurs. Fires the event. /// This method can be used to simulate a mouse event, e.g. in unit tests. /// The mouse event with coordinates relative to the screen. @@ -1621,6 +1622,7 @@ public static partial class Application } } } + #nullable restore #endregion Mouse handling