fix review bottom

This commit is contained in:
chrys 2016-09-12 21:53:33 +02:00
parent fb46e6deaa
commit 5703bb9e7c

View File

@ -4,9 +4,7 @@ class command():
def __init__(self): def __init__(self):
pass pass
def run(self, environment): def run(self, environment):
environment['screenData']['newCursorReview'] = {} environment['screenData']['newCursorReview'] = { 'x': 0, 'y':environment['screenData']['lines']}
environment['screenData']['newCursorReview']['x'] = environment['screenData']['lines']
environment['screenData']['newCursorReview']['y'] = 0
environment['runtime']['outputManager'].presentText(environment, "Bottom", interrupt=True) environment['runtime']['outputManager'].presentText(environment, "Bottom", interrupt=True)
return environment return environment
def setCallback(self, callback): def setCallback(self, callback):