diff options
author | bobzel <zzzman@gmail.com> | 2020-08-10 10:37:07 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-10 10:37:07 -0400 |
commit | 03ae3477dac354eff9178dac701ee40e394434c9 (patch) | |
tree | 5a378bc785fa0072092e16b3699ccd8f153e9211 /src/client/views/GlobalKeyHandler.ts | |
parent | 52a0e603f77d1a82fe7f06badb9717813ef38e05 (diff) |
fixed issues with presentationBox grabbing all keyboard events and preventing title edits among others. fixed runtime errors. fixed groupManager to open again.
Diffstat (limited to 'src/client/views/GlobalKeyHandler.ts')
-rw-r--r-- | src/client/views/GlobalKeyHandler.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/views/GlobalKeyHandler.ts b/src/client/views/GlobalKeyHandler.ts index 0ea02e3cb..182f6397c 100644 --- a/src/client/views/GlobalKeyHandler.ts +++ b/src/client/views/GlobalKeyHandler.ts @@ -108,7 +108,9 @@ export default class KeyManager { GoogleAuthenticationManager.Instance.cancel(); SharingManager.Instance.close(); GroupManager.Instance.close(); - CollectionFreeFormViewChrome.Instance.clearKeep(); + CollectionFreeFormViewChrome.Instance?.clearKeep(); + window.getSelection()?.empty(); + document.body.focus(); break; case "delete": case "backspace": |