From 2f8ee1b1bf330ab015e62269bd9ababbf3cb26f6 Mon Sep 17 00:00:00 2001 From: Jill Chhagnani <146868087+JustJ01@users.noreply.github.com> Date: Mon, 16 Feb 2026 00:49:23 +0530 Subject: [PATCH] Fix inability to navigate up and down with arrow keys in interactive-style menu lists (#3768) fixed keyboard navigation in font picker --- frontend/src/components/floating-menus/MenuList.svelte | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/components/floating-menus/MenuList.svelte b/frontend/src/components/floating-menus/MenuList.svelte index 88b00bd0..bde25b57 100644 --- a/frontend/src/components/floating-menus/MenuList.svelte +++ b/frontend/src/components/floating-menus/MenuList.svelte @@ -252,9 +252,6 @@ /// Handles keyboard navigation for the menu. // Returns a boolean indicating whether the entire menu stack should be dismissed. export function keydown(e: KeyboardEvent, submenu = false): boolean { - // Interactive menus should keep the active entry the same as the highlighted one - if (interactive) highlighted = activeEntry; - const menuOpen = open; const flatEntries = filteredEntries.flat().filter((entry) => !entry.disabled); const openChild = (openChildValue !== undefined && flatEntries.findIndex((entry) => entry.value === openChildValue)) || -1;