From 378519ccf3684b6bfcda6be9d6fec51c2d665d34 Mon Sep 17 00:00:00 2001 From: David <97603719+Commodore64user@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:28:27 +0000 Subject: [PATCH] [NT] Remove gesture mentions from Dispatcher (#12889) --- frontend/dispatcher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/dispatcher.lua b/frontend/dispatcher.lua index 79587f5a5..41b3d5cbd 100644 --- a/frontend/dispatcher.lua +++ b/frontend/dispatcher.lua @@ -869,7 +869,7 @@ function Dispatcher:_addItem(caller, menu, location, settings, section) callback = function(spin) setValue(k, spin.value, touchmenu_instance) end, - option_text = caller.profiles == nil and _("Use gesture distance"), -- Gesture manager only + option_text = Device:isTouchDevice() and caller.profiles == nil and _("Use gesture distance"), -- Gesture manager only option_callback = function() setValue(k, 0, touchmenu_instance) end,