From 55e9f9e4b4dd6e0a52261168c279fa5e22da61c1 Mon Sep 17 00:00:00 2001 From: chrys Date: Fri, 23 Aug 2019 11:39:11 +0200 Subject: [PATCH] Update 55000-tab_completion.py --- .../commands/onCursorChange/55000-tab_completion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrirscreenreader/commands/onCursorChange/55000-tab_completion.py b/src/fenrirscreenreader/commands/onCursorChange/55000-tab_completion.py index 1fa63142..0407ac9b 100644 --- a/src/fenrirscreenreader/commands/onCursorChange/55000-tab_completion.py +++ b/src/fenrirscreenreader/commands/onCursorChange/55000-tab_completion.py @@ -19,7 +19,7 @@ class command(): def run(self): # try to detect the tab completion by cursor change xMove = abs(self.env['screen']['newCursor']['x'] - self.env['screen']['oldCursor']['x']) - if xMove <= 2: + if xMove == 1: return # is there any change? if not self.env['runtime']['screenManager'].isDelta():