Skip to content

Commit 50daecb

Browse files
authored
Merge 482e8ca into 3f89b60
2 parents 3f89b60 + 482e8ca commit 50daecb

2 files changed

Lines changed: 18 additions & 4 deletions

File tree

source/globalCommands.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3781,7 +3781,15 @@ def script_reportLinkDestinationInWindow(self, gesture: inputCore.InputGesture)
37813781
# Translators: Input help mode message for a touchscreen gesture.
37823782
description=_("Moves to the next object in a flattened view of the object navigation hierarchy"),
37833783
category=SCRCAT_OBJECTNAVIGATION,
3784-
gesture="ts(object):flickright"
3784+
gestures=(
3785+
"ts(object):flickright",
3786+
"kb(desktop):NVDA+numpad3",
3787+
"kb(laptop):shift+NVDA+'",
3788+
# In the US International keyboard layout,
3789+
# the apostrophe has special behavior to be able to type accented letters.
3790+
# In that layout, it is regarded to as acute/cedilla.
3791+
"kb(laptop):shift+NVDA+acute/cedilla"
3792+
),
37853793
)
37863794
def script_navigatorObject_nextInFlow(self, gesture: inputCore.InputGesture):
37873795
curObject=api.getNavigatorObject()
@@ -3815,7 +3823,11 @@ def script_navigatorObject_nextInFlow(self, gesture: inputCore.InputGesture):
38153823
# Translators: Input help mode message for a touchscreen gesture.
38163824
description=_("Moves to the previous object in a flattened view of the object navigation hierarchy"),
38173825
category=SCRCAT_OBJECTNAVIGATION,
3818-
gesture="ts(object):flickleft"
3826+
gestures=(
3827+
"ts(object):flickleft",
3828+
"kb(desktop):NVDA+numpad9",
3829+
"kb(laptop):shift+NVDA+;"
3830+
),
38193831
)
38203832
def script_navigatorObject_previousInFlow(self, gesture: inputCore.InputGesture):
38213833
curObject=api.getNavigatorObject()

user_docs/en/userGuide.t2t

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,10 @@ To navigate by object, use the following commands:
605605
|| Name | Desktop key | Laptop key | Touch | Description |
606606
| Report current object | NVDA+numpad5 | NVDA+shift+o | none | Reports the current navigator object. Pressing twice spells the information, and pressing 3 times copies this object's name and value to the clipboard. |
607607
| Move to containing object | NVDA+numpad8 | NVDA+shift+upArrow | flick up (object mode) | Moves to the object containing the current navigator object |
608-
| Move to previous object | NVDA+numpad4 | NVDA+shift+leftArrow | flick left (object mode) | Moves to the object before the current navigator object |
609-
| Move to next object | NVDA+numpad6 | NVDA+shift+rightArrow | flick right (object mode) | Moves to the object after the current navigator object |
608+
| Move to previous object | NVDA+numpad4 | NVDA+shift+leftArrow | none | Moves to the object before the current navigator object |
609+
| Move to previous object in flattened view | NVDA+numpad9 | NVDA+shift+; | flick left (object mode) | Moves to the previous object in a flattened view of the object navigation hierarchy |
610+
| Move to next object | NVDA+numpad6 | NVDA+shift+rightArrow | none | Moves to the object after the current navigator object |
611+
| Move to next object in flattened view | NVDA+numpad3 | NVDA+shift+' | flick right (object mode) | Moves to the next object in a flattened view of the object navigation hierarchy |
610612
| Move to first contained object | NVDA+numpad2 | NVDA+shift+downArrow | flick down (object mode) | Moves to the first object contained by the current navigator object |
611613
| Move to focus object | NVDA+numpadMinus | NVDA+backspace | none | Moves to the object that currently has the system focus, and also places the review cursor at the position of the System caret, if it is showing |
612614
| Activate current navigator object | NVDA+numpadEnter | NVDA+enter | double-tap | Activates the current navigator object (similar to clicking with the mouse or pressing space when it has the system focus) |

0 commit comments

Comments
 (0)