fix arrowing

This commit is contained in:
chrys
2016-09-27 23:28:30 +02:00
parent 58e2c6812a
commit 63a32a4306
3 changed files with 6 additions and 7 deletions

View File

@ -17,8 +17,7 @@ class command():
return ''
def run(self):
if not self.env['runtime']['inputManager'].noKeyPressed():
return
if self.env['screenData']['newTTY'] != self.env['screenData']['oldTTY']:
return
if self.env['runtime']['inputManager'].noKeyPressed():

View File

@ -18,7 +18,7 @@ class command():
def run(self):
self.env['runtime']['outputManager'].presentText("screen " + str(self.env['screenData']['newTTY']),soundIcon='ChangeTTY', interrupt=True)
self.env['runtime']['outputManager'].presentText(self.env['screenData']['newDelta'], interrupt=False)
self.env['runtime']['outputManager'].presentText(self.env['screenData']['newContentText'], interrupt=False)
def setCallback(self, callback):
pass