Skip to content

Commit 21b08ab

Browse files
authored
Merge 034877c into 1e30951
2 parents 1e30951 + 034877c commit 21b08ab

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

source/browseMode.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,17 @@ def _get_disableAutoPassThrough(self):
920920
# Translators: Message presented when the browse mode element is not found.
921921
prevError=_("no previous grouping")
922922
)
923+
qn(
924+
"tab", key="y",
925+
# Translators: Input help message for a quick navigation command in browse mode.
926+
nextDoc=_("moves to the next tab"),
927+
# Translators: Message presented when the browse mode element is not found.
928+
nextError=_("no next tab"),
929+
# Translators: Input help message for a quick navigation command in browse mode.
930+
prevDoc=_("moves to the previous tab"),
931+
# Translators: Message presented when the browse mode element is not found.
932+
prevError=_("no previous tab")
933+
)
923934
del qn
924935

925936

source/virtualBuffers/gecko_ia2.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,8 @@ def _searchableAttribsForNodeType(self,nodeType):
543543
},
544544
{"IAccessible::role":[oleacc.ROLE_SYSTEM_APPLICATION,oleacc.ROLE_SYSTEM_DIALOG]},
545545
]
546+
elif nodeType=="tab":
547+
attrs=[{"IAccessible::role": [oleacc.ROLE_SYSTEM_PAGETAB]}]
546548
else:
547549
return None
548550
return attrs

0 commit comments

Comments
 (0)