aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/views/GlobalKeyHandler.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/GlobalKeyHandler.ts b/src/client/views/GlobalKeyHandler.ts
index 037eee55f..d3c689571 100644
--- a/src/client/views/GlobalKeyHandler.ts
+++ b/src/client/views/GlobalKeyHandler.ts
@@ -71,7 +71,7 @@ export default class KeyManager {
case "backspace":
if (document.activeElement) {
if (document.activeElement.tagName === "INPUT" || document.activeElement.tagName === "TEXTAREA") {
- return;
+ return { stopPropagation: false, preventDefault: false };
}
}
UndoManager.RunInBatch(() => {