From bc49e09810b25acbdeec78e0291eac0b33de9fd9 Mon Sep 17 00:00:00 2001 From: Araxeus <78568641+Araxeus@users.noreply.github.com> Date: Tue, 24 Jan 2023 00:45:34 +0200 Subject: [PATCH] fix precise-volume+searchbox interaction --- plugins/precise-volume/front.js | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/precise-volume/front.js b/plugins/precise-volume/front.js index 38a2a60b..2840e480 100644 --- a/plugins/precise-volume/front.js +++ b/plugins/precise-volume/front.js @@ -235,6 +235,7 @@ function setTooltip(volume) { function setupLocalArrowShortcuts() { if (options.arrowsShortcut) { window.addEventListener('keydown', (event) => { + if ($('ytmusic-search-box').opened) return; switch (event.code) { case "ArrowUp": event.preventDefault();