add stop review mode
This commit is contained in:
Binary file not shown.
15
src/fenrir-package/commands/commands/exit_review.py
Normal file
15
src/fenrir-package/commands/commands/exit_review.py
Normal file
@ -0,0 +1,15 @@
|
||||
#!/bin/python
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
pass
|
||||
def run(self, environment):
|
||||
environment['runtime']['speechDriver'].cancel()
|
||||
environment['screenData']['oldCursorReview'] = {'x':-1,'y':-1}
|
||||
environment['screenData']['newCursorReview'] = {'x':-1,'y':-1}
|
||||
environment['runtime']['speechDriver'].speak("leve review mode")
|
||||
return environment
|
||||
def setCallback(self, callback):
|
||||
pass
|
||||
def shutdown(self):
|
||||
pass
|
Reference in New Issue
Block a user