reset review after screenchange

This commit is contained in:
chrys87 2016-08-23 13:01:35 +02:00 committed by GitHub
parent 124c5aba77
commit 7ddb8a2085

View File

@ -0,0 +1,15 @@
#!/bin/python
class command():
def __init__(self):
pass
def run(self, environment):
if environment['screenData']['newTTY'] == environment['screenData']['oldTTY']:
return environment
environment['screenData']['oldCursorReview'] = None
environment['screenData']['newCursorReview'] = None
return environment
def setCallback(self, callback):
pass
def shutdown(self):
pass