From 3271fe9010201e4cccad2fb0e6bc0fbd02117709 Mon Sep 17 00:00:00 2001 From: chrys Date: Fri, 23 Aug 2019 11:37:41 +0200 Subject: [PATCH] Update 15000-char_echo.py --- .../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 c41d45fc..fbe7eeb6 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 > 2: + if xMove > 1: return # detect deletion or chilling if self.env['screen']['newCursor']['x'] <= self.env['screen']['oldCursor']['x']: