From 7bb9d33245614f1b3b2491bf7def8c5a789f6f99 Mon Sep 17 00:00:00 2001 From: zadam Date: Thu, 22 Sep 2022 22:53:22 +0200 Subject: [PATCH] 0 offset of context menu, fixes #3157 --- src/public/app/services/context_menu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/services/context_menu.js b/src/public/app/services/context_menu.js index 806efd188..d2256962b 100644 --- a/src/public/app/services/context_menu.js +++ b/src/public/app/services/context_menu.js @@ -27,7 +27,7 @@ class ContextMenu { // in such case we'll position it above click coordinates so it will fit into client const CONTEXT_MENU_PADDING = 5; // How many pixels to pad context menu from edge of screen - const CONTEXT_MENU_OFFSET = 10; // How many pixels to offset context menu by relative to cursor + const CONTEXT_MENU_OFFSET = 0; // How many pixels to offset context menu by relative to cursor, see #3157 const clientHeight = document.documentElement.clientHeight; const clientWidth = document.documentElement.clientWidth;