Update 70000-incoming.py
This commit is contained in:
parent
5e2d192da5
commit
d112dd3167
@ -27,9 +27,10 @@ class command():
|
||||
# its a cursor movement (experimental) - maybe also check current shortcut string?
|
||||
|
||||
if abs(self.env['screenData']['newCursor']['x'] - self.env['screenData']['oldCursor']['x']) >= 1:
|
||||
if len(self.env['screenData']['newDelta'].strip(' \n\t')) <= 2:
|
||||
if len(self.env['screenData']['newDelta'].strip(' \n\t0123456789')) <= 2:
|
||||
return
|
||||
if abs(self.env['screenData']['newCursor']['y'] - self.env['screenData']['oldCursor']['y']) == 1:
|
||||
if len(self.env['screenData']['newDelta'].strip(' \n\t0123456789')) <= 2:
|
||||
return
|
||||
self.env['runtime']['outputManager'].presentText(self.env['screenData']['newDelta'], interrupt=False, flush=False)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user