increase char echo tollerance

This commit is contained in:
Chrys 2019-09-06 22:52:30 +02:00
parent 32794f2fe5
commit 52f1c221c3

View File

@ -22,7 +22,7 @@ class command():
return return
# big changes are no char (but the value is bigger than one maybe the differ needs longer than you can type, so a little strange random buffer for now) # big changes are no char (but the value is bigger than one maybe the differ needs longer than you can type, so a little strange random buffer for now)
xMove = abs(self.env['screen']['newCursor']['x'] - self.env['screen']['oldCursor']['x']) xMove = abs(self.env['screen']['newCursor']['x'] - self.env['screen']['oldCursor']['x'])
if xMove > 1: if xMove > 3:
return return
if self.env['runtime']['inputManager'].getShortcutType() in ['KEY']: if self.env['runtime']['inputManager'].getShortcutType() in ['KEY']:
if self.env['runtime']['inputManager'].getLastDeepestInput() in [['KEY_TAB']]: if self.env['runtime']['inputManager'].getLastDeepestInput() in [['KEY_TAB']]: