aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/GlobalKeyHandler.ts
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2019-08-03 14:05:33 -0400
committerSam Wilkins <samwilkins333@gmail.com>2019-08-03 14:05:33 -0400
commit30444bd06dbd00c948749fa739e7a42cef87ec85 (patch)
treeab49c0875a6cc46cee7aee22acb25965a0be3fb5 /src/client/views/GlobalKeyHandler.ts
parent982961c71fdd9d5dcd02ea33a2b631076a6a1f4b (diff)
added final or interim listning
Diffstat (limited to 'src/client/views/GlobalKeyHandler.ts')
-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 609136bb5..b1ea92bb8 100644
--- a/src/client/views/GlobalKeyHandler.ts
+++ b/src/client/views/GlobalKeyHandler.ts
@@ -111,7 +111,7 @@ export default class KeyManager {
let main = MainView.Instance;
main.dictationOverlayVisible = true;
main.isListening = true;
- let command = await DictationManager.Controls.listen();
+ let command = await DictationManager.Controls.listen((results: any) => console.log(results));
main.isListening = false;
if (!command) {
break;