diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-08-01 02:39:33 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-08-01 02:39:33 -0400 |
commit | 810b7898b279069fb8d7cc666333d02e71e23fd2 (patch) | |
tree | ccd8685cbf070005cbbea1b9cabcb3ccbd0132bd | |
parent | cd02f494975ad44b85c08d3108f185edbea43258 (diff) |
naming tweak
-rw-r--r-- | src/client/views/GlobalKeyHandler.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/GlobalKeyHandler.ts b/src/client/views/GlobalKeyHandler.ts index 59d120974..99345f04e 100644 --- a/src/client/views/GlobalKeyHandler.ts +++ b/src/client/views/GlobalKeyHandler.ts @@ -114,15 +114,15 @@ export default class KeyManager { let main = MainView.Instance; main.dictationOverlayVisible = true; main.isListening = true; - let manager = DictationManager.Instance; - let command = await manager.listen(); + let dictation = DictationManager.Instance; + let command = await dictation.listen(); main.isListening = false; if (!command) { break; } command = command.toLowerCase(); main.dictatedPhrase = command; - main.dictationSuccess = await manager.execute(command); + main.dictationSuccess = await dictation.execute(command); main.overlayTimeout = setTimeout(() => { main.dictationOverlayVisible = false; main.dictationSuccess = undefined; |