From b46e66fcf831d17c94834c46fe1da8c136b39dc5 Mon Sep 17 00:00:00 2001 From: chrys87 Date: Tue, 23 Aug 2016 13:13:24 +0200 Subject: [PATCH] Update curr_line.py --- src/fenrir-package/commands/commands/curr_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir-package/commands/commands/curr_line.py b/src/fenrir-package/commands/commands/curr_line.py index 8f4a4e5c..538a0fb4 100644 --- a/src/fenrir-package/commands/commands/curr_line.py +++ b/src/fenrir-package/commands/commands/curr_line.py @@ -13,7 +13,7 @@ class command(): line_utils.getCurrentLine(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