From 84a4bb69d430082c9ce90bf6cf5257700f20ebb2 Mon Sep 17 00:00:00 2001 From: Tig Kindel Date: Mon, 6 Feb 2023 11:31:02 +0900 Subject: [PATCH] removed unused Cook/UncookMouse APIs --- Terminal.Gui/Core/Application.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Terminal.Gui/Core/Application.cs b/Terminal.Gui/Core/Application.cs index b5f6e5984..327c9e2c4 100644 --- a/Terminal.Gui/Core/Application.cs +++ b/Terminal.Gui/Core/Application.cs @@ -705,7 +705,6 @@ namespace Terminal.Gui { return; OnGrabbedMouse (view); mouseGrabView = view; - Driver.UncookMouse (); } /// @@ -717,7 +716,6 @@ namespace Terminal.Gui { return; OnUnGrabbedMouse (mouseGrabView); mouseGrabView = null; - Driver.CookMouse (); } static void OnGrabbedMouse (View view)