diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-08-03 21:29:56 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-08-03 21:29:56 -0400 |
commit | d6fda11588f1a117e8acc30ea5600d34ff22e01b (patch) | |
tree | aad322319d9f3e85a3773b1d15c2d082527c4742 /src/client/views/GlobalKeyHandler.ts | |
parent | 6588455dfa091a1e925b4eeee5d018e23731b491 (diff) |
now differentiate between continuous, indefinite and, separately, interim vs final only dictation results
Diffstat (limited to 'src/client/views/GlobalKeyHandler.ts')
-rw-r--r-- | src/client/views/GlobalKeyHandler.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/GlobalKeyHandler.ts b/src/client/views/GlobalKeyHandler.ts index 82289c249..98df43a1e 100644 --- a/src/client/views/GlobalKeyHandler.ts +++ b/src/client/views/GlobalKeyHandler.ts @@ -112,7 +112,8 @@ export default class KeyManager { main.dictationOverlayVisible = true; main.isListening = true; - let command = await DictationManager.Controls.listen((results: any) => console.log(results)); + // let printer = (results: any) => console.log(results); + let command = await DictationManager.Controls.listen(); main.isListening = false; if (!command) { |