From 59d0138ca8f387c117a62eb492557af29bc67286 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Wed, 17 Jan 2024 13:42:46 +0800 Subject: [PATCH] If there's selected text, don't show custom context menu --- src/components/status.jsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/components/status.jsx b/src/components/status.jsx index e7447211..1cafe762 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -1271,12 +1271,20 @@ function Status({ }`} onMouseEnter={debugHover} onContextMenu={(e) => { - // FIXME: this code isn't getting called on Chrome at all? if (!showContextMenu) return; if (e.metaKey) return; // console.log('context menu', e); const link = e.target.closest('a'); if (link && /^https?:\/\//.test(link.getAttribute('href'))) return; + + // If there's selected text, don't show custom context menu + const selection = window.getSelection?.(); + if (selection.toString().length > 0) { + const { anchorNode } = selection; + if (statusRef.current?.contains(anchorNode)) { + return; + } + } e.preventDefault(); setContextMenuProps({ anchorPoint: {