fix: skip stack arrow handling while editing

This commit is contained in:
2026-04-25 00:57:01 +02:00
parent 679ecbef7d
commit 09e4d94908
+5
View File
@@ -376,6 +376,11 @@ function handleKeydown(event) {
} }
if (action.type === 'stackArrow') { if (action.type === 'stackArrow') {
if (calc.isEditing) {
render();
return;
}
if (isMovingStackItem) { if (isMovingStackItem) {
moveStackItem(action.value); moveStackItem(action.value);
} else { } else {