From 5dd3622962cdf996437f8845a42ad15b49c277b6 Mon Sep 17 00:00:00 2001 From: abdel792 Date: Tue, 16 Apr 2019 00:40:58 +0200 Subject: [PATCH] * Added shift+enter and shift+numpadEnter keys to announce the previous cell in the same column in Excel; * In principle, as the enter and numpadEnter keys announce the next cell in the same column, the shift+enter and shift+numpadEnter keys should announce the previous cell; * In fact, moving to previous or next cell is integrated by default in Excel, NVDA should just announce the current cell with each move. --- source/NVDAObjects/window/excel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/NVDAObjects/window/excel.py b/source/NVDAObjects/window/excel.py index 673ccd967b1..f8d91ac828a 100755 --- a/source/NVDAObjects/window/excel.py +++ b/source/NVDAObjects/window/excel.py @@ -877,6 +877,8 @@ def _get_states(self): "kb:shift+tab", "kb:enter", "kb:numpadEnter", + "kb:shift+enter", + "kb:shift+numpadEnter", "kb:upArrow", "kb:downArrow", "kb:leftArrow",