From 1729a2f7343e44261c8db4acfc5a89747a64f48b Mon Sep 17 00:00:00 2001 From: vcoppe Date: Tue, 11 Nov 2025 09:29:07 +0100 Subject: [PATCH] remove dead code --- website/src/lib/components/Menu.svelte | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/website/src/lib/components/Menu.svelte b/website/src/lib/components/Menu.svelte index 8aa5e231b..4fafe59fa 100644 --- a/website/src/lib/components/Menu.svelte +++ b/website/src/lib/components/Menu.svelte @@ -644,16 +644,6 @@ } else if (e.key === 'F5') { $routing = !$routing; e.preventDefault(); - } else if ( - e.key === 'ArrowRight' || - e.key === 'ArrowDown' || - e.key === 'ArrowLeft' || - e.key === 'ArrowUp' - ) { - if (!targetInput) { - // updateSelectionFromKey(e.key === 'ArrowRight' || e.key === 'ArrowDown', e.shiftKey); - e.preventDefault(); - } } }} on:dragover={(e) => e.preventDefault()}