From 1f4364683da480f7588f9f90cbb24ae0cdac2d4c Mon Sep 17 00:00:00 2001 From: chrys87 Date: Tue, 23 Aug 2016 13:14:35 +0200 Subject: [PATCH] Update prev_line.py --- src/fenrir-package/commands/commands/prev_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir-package/commands/commands/prev_line.py b/src/fenrir-package/commands/commands/prev_line.py index 20917bcb..4b3cbc97 100644 --- a/src/fenrir-package/commands/commands/prev_line.py +++ b/src/fenrir-package/commands/commands/prev_line.py @@ -13,7 +13,7 @@ class command(): line_utils.getPrevLine(environment['screenData']['newCursorReview']['x'], environment['screenData']['newCursorReview']['y'], environment['screenData']['newContentText']) if currLine.strip(" \t\n") == '': - environment['runtime']['outputManager'].presentText(environment, "blank", interrupt=True) + environment['runtime']['outputManager'].presentText(environment, "blank", soundIcon='EmptyLine', interrupt=True) else: environment['runtime']['outputManager'].presentText(environment, currLine, interrupt=True) return environment