From 52f1c221c308bbab21f8e79072c37f9b100ed2f5 Mon Sep 17 00:00:00 2001 From: Chrys Date: Fri, 6 Sep 2019 22:52:30 +0200 Subject: [PATCH] increase char echo tollerance --- .../commands/onCursorChange/15000-char_echo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrirscreenreader/commands/onCursorChange/15000-char_echo.py b/src/fenrirscreenreader/commands/onCursorChange/15000-char_echo.py index 039752bf..dd62c658 100644 --- a/src/fenrirscreenreader/commands/onCursorChange/15000-char_echo.py +++ b/src/fenrirscreenreader/commands/onCursorChange/15000-char_echo.py @@ -22,7 +22,7 @@ class command(): 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) xMove = abs(self.env['screen']['newCursor']['x'] - self.env['screen']['oldCursor']['x']) - if xMove > 1: + if xMove > 3: return if self.env['runtime']['inputManager'].getShortcutType() in ['KEY']: if self.env['runtime']['inputManager'].getLastDeepestInput() in [['KEY_TAB']]: