From 806e975e312862ea2fc7e62428bf208efaef0773 Mon Sep 17 00:00:00 2001 From: Yuri Karamian Date: Fri, 19 Jun 2026 14:30:32 +0200 Subject: [PATCH] Fix table context menu going below screen --- src/lib/components/Editor.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Editor.svelte b/src/lib/components/Editor.svelte index c63b5f2..6926bd3 100644 --- a/src/lib/components/Editor.svelte +++ b/src/lib/components/Editor.svelte @@ -4057,7 +4057,7 @@ let x = event.clientX; let y = event.clientY; const menuWidth = 220; - const menuHeight = 520; + const menuHeight = 560; if (x + menuWidth > window.innerWidth) x = window.innerWidth - menuWidth - 8; if (y + menuHeight > window.innerHeight) y = window.innerHeight - menuHeight - 8; if (x < 4) x = 4;