From bf03f510523a3f2c4ad4308b38a6b48bbe0c931f Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Fri, 3 Aug 2018 11:06:50 -0400 Subject: [PATCH] Change text for cursor column review. --- src/fenrirscreenreader/commands/commands/cursor_column.py | 2 +- src/fenrirscreenreader/commands/commands/cursor_lineno.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fenrirscreenreader/commands/commands/cursor_column.py b/src/fenrirscreenreader/commands/commands/cursor_column.py index 9b738626..7afb9e5f 100644 --- a/src/fenrirscreenreader/commands/commands/cursor_column.py +++ b/src/fenrirscreenreader/commands/commands/cursor_column.py @@ -14,7 +14,7 @@ class command(): def shutdown(self): pass def getDescription(self): - return _('presents the current column number for review cursor in review mode or the text cursor if not. Starts with 1') + return _('Column number for cursor') def run(self): cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() self.env['runtime']['outputManager'].presentText(str(cursorPos['x'] + 1) , interrupt=True) diff --git a/src/fenrirscreenreader/commands/commands/cursor_lineno.py b/src/fenrirscreenreader/commands/commands/cursor_lineno.py index cf926dd0..80e665a2 100644 --- a/src/fenrirscreenreader/commands/commands/cursor_lineno.py +++ b/src/fenrirscreenreader/commands/commands/cursor_lineno.py @@ -14,7 +14,7 @@ class command(): def shutdown(self): pass def getDescription(self): - return _('presents the current line number for review cursor in review mode or the text cursor if not. Starts with 1') + return _('Line number for cursor') def run(self): cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() self.env['runtime']['outputManager'].presentText(str(cursorPos['y'] + 1), interrupt=True)