Update exit_review.py

This commit is contained in:
chrys87 2016-08-23 13:07:04 +02:00 committed by GitHub
parent fff62f0eb3
commit b948fccb46

View File

@ -4,8 +4,8 @@ class command():
def __init__(self): def __init__(self):
pass pass
def run(self, environment): def run(self, environment):
environment['screenData']['oldCursorReview'] = {'x':-1,'y':-1} environment['screenData']['oldCursorReview'] = None
environment['screenData']['newCursorReview'] = {'x':-1,'y':-1} environment['screenData']['newCursorReview'] = None
environment['runtime']['outputManager'].presentText(environment, "leve review mode", interrupt=True) environment['runtime']['outputManager'].presentText(environment, "leve review mode", interrupt=True)
return environment return environment
def setCallback(self, callback): def setCallback(self, callback):