From c2efb58e312fb1f7f6775414edefdaa7715ced27 Mon Sep 17 00:00:00 2001 From: chrys Date: Tue, 31 Jan 2017 00:31:58 +0100 Subject: [PATCH] tweak some more commands for braille --- .../onInput/55000-present_line_if_cursor_change_vertical.py | 2 +- src/fenrir/commands/onInput/56000-highlight_tracking.py | 2 +- src/fenrir/commands/onInput/72000-history.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fenrir/commands/onInput/55000-present_line_if_cursor_change_vertical.py b/src/fenrir/commands/onInput/55000-present_line_if_cursor_change_vertical.py index ba1282f0..a7938018 100644 --- a/src/fenrir/commands/onInput/55000-present_line_if_cursor_change_vertical.py +++ b/src/fenrir/commands/onInput/55000-present_line_if_cursor_change_vertical.py @@ -35,7 +35,7 @@ class command(): if currLine.isspace(): self.env['runtime']['outputManager'].presentText("blank", soundIcon='EmptyLine', interrupt=True, flush=False) else: - self.env['runtime']['outputManager'].presentText(currLine, interrupt=True) + self.env['runtime']['outputManager'].presentText(currLine, interrupt=True, flush=False) def setCallback(self, callback): pass diff --git a/src/fenrir/commands/onInput/56000-highlight_tracking.py b/src/fenrir/commands/onInput/56000-highlight_tracking.py index 4f75f498..8cc0fb07 100644 --- a/src/fenrir/commands/onInput/56000-highlight_tracking.py +++ b/src/fenrir/commands/onInput/56000-highlight_tracking.py @@ -18,7 +18,7 @@ class command(): def run(self): if not self.env['runtime']['settingsManager'].getSettingAsBool('focus', 'highlight'): return - self.env['runtime']['outputManager'].presentText(self.env['screenData']['newAttribDelta'], soundIcon='', interrupt=True) + self.env['runtime']['outputManager'].presentText(self.env['screenData']['newAttribDelta'], soundIcon='', interrupt=True, flush=False) def setCallback(self, callback): pass diff --git a/src/fenrir/commands/onInput/72000-history.py b/src/fenrir/commands/onInput/72000-history.py index fd6788fe..48b16434 100644 --- a/src/fenrir/commands/onInput/72000-history.py +++ b/src/fenrir/commands/onInput/72000-history.py @@ -49,7 +49,7 @@ class command(): if currLine.isspace(): self.env['runtime']['outputManager'].presentText("blank", soundIcon='EmptyLine', interrupt=True, flush=False) else: - self.env['runtime']['outputManager'].presentText(announce, interrupt=True) + self.env['runtime']['outputManager'].presentText(announce, interrupt=True, flush=False) self.env['commandsIgnore']['onScreenUpdate']['CHAR_DELETE_ECHO'] = True self.env['commandsIgnore']['onScreenUpdate']['CHAR_ECHO'] = True self.env['commandsIgnore']['onScreenUpdate']['INCOMING_IGNORE'] = True