diff options
author | kimdahey <claire_kim1@brown.edu> | 2019-08-23 13:52:41 -0400 |
---|---|---|
committer | kimdahey <claire_kim1@brown.edu> | 2019-08-23 13:52:41 -0400 |
commit | 72ed0bbdb045695a8dcb7d604a9d834b16f424a9 (patch) | |
tree | f6a062b47f255b9f211c4f2b9218bcf2dca15eb2 /src/client/views/GlobalKeyHandler.ts | |
parent | cc6040e717632ae9725c134cd8722813cb1733c2 (diff) | |
parent | 56987012f9690d300b482d8f1b3d83935342322b (diff) |
fixed merge conflicts
Diffstat (limited to 'src/client/views/GlobalKeyHandler.ts')
-rw-r--r-- | src/client/views/GlobalKeyHandler.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/views/GlobalKeyHandler.ts b/src/client/views/GlobalKeyHandler.ts index 833bacedb..d0464bd5f 100644 --- a/src/client/views/GlobalKeyHandler.ts +++ b/src/client/views/GlobalKeyHandler.ts @@ -105,7 +105,7 @@ export default class KeyManager { switch (keyname) { case " ": - DictationManager.Controls.listen({ tryExecute: true }); + DictationManager.Controls.listen({ useOverlay: true, tryExecute: true }); stopPropagation = true; preventDefault = true; } @@ -196,8 +196,6 @@ export default class KeyManager { async printClipboard() { let text: string = await navigator.clipboard.readText(); - console.log(text) - console.log(document.activeElement) } private ctrl_shift = action((keyname: string) => { |