From 42c651da294a1de669f9ce8512b9581fa091d2b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Sat, 12 Jul 2025 15:32:02 +0200 Subject: [PATCH] FIX: Do not propagate on cut or double click in the editor --- webapp/IronCalc/src/components/Editor/Editor.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webapp/IronCalc/src/components/Editor/Editor.tsx b/webapp/IronCalc/src/components/Editor/Editor.tsx index a72390f..dce85c0 100644 --- a/webapp/IronCalc/src/components/Editor/Editor.tsx +++ b/webapp/IronCalc/src/components/Editor/Editor.tsx @@ -250,6 +250,8 @@ const Editor = (options: EditorOptions) => { }} onPaste={(event) => event.stopPropagation()} onCopy={(event) => event.stopPropagation()} + onDoubleClick={(event) => event.stopPropagation()} + onCut={(event) => event.stopPropagation()} /> );