From 6f32c1932f7ddfe6b7b86038c1385eed86d51921 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Fri, 13 Feb 2026 15:22:30 -0800 Subject: [PATCH] Make hover target for menu button more reasonable --- src/app/components/RoomItemMenuButton.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/RoomItemMenuButton.svelte b/src/app/components/RoomItemMenuButton.svelte index 4cb321be..40f14f33 100644 --- a/src/app/components/RoomItemMenuButton.svelte +++ b/src/app/components/RoomItemMenuButton.svelte @@ -17,7 +17,7 @@ if (popover) { const {x, y, width, height} = popover.popper.getBoundingClientRect() - if (!between([x, x + width], clientX) || !between([y, y + height + 30], clientY)) { + if (!between([x, x + width], clientX) || !between([y - 50, y + height + 50], clientY)) { popover.hide() } }