From 09e4d94908691b7e90d4a16e9178b1ed68d3bc36 Mon Sep 17 00:00:00 2001 From: MatMoul Date: Sat, 25 Apr 2026 00:57:01 +0200 Subject: [PATCH] fix: skip stack arrow handling while editing --- samples/dev/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/samples/dev/index.js b/samples/dev/index.js index 11019a2..aa2590b 100644 --- a/samples/dev/index.js +++ b/samples/dev/index.js @@ -376,6 +376,11 @@ function handleKeydown(event) { } if (action.type === 'stackArrow') { + if (calc.isEditing) { + render(); + return; + } + if (isMovingStackItem) { moveStackItem(action.value); } else {