Skip to content

Commit e0ecd4f

Browse files
authored
Merge 3ac7860 into 2758453
2 parents 2758453 + 3ac7860 commit e0ecd4f

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

source/appModules/searchui.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ class StartMenuSearchField(SearchField):
2020
# #7370: do not announce text when start menu (searchui) closes.
2121
announceNewLineText = False
2222

23+
def _get_description(self) -> str:
24+
# #13841: detect search highlights and anounce it.
25+
if self.lastChild.UIAAutomationId == "PlaceholderTextContentPresenter":
26+
return self.lastChild.name
27+
return super().description
28+
2329

2430
class AppModule(appModuleHandler.AppModule):
2531

user_docs/en/changes.t2t

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ What's New in NVDA
1010

1111
== Changes ==
1212
- Updated Sonic rate boost library to commit ``1d70513``. (#14180)
13-
13+
-
1414

1515

1616
== Bug Fixes ==
17+
- In Windows 11, NVDA will announce search highlights when opening Start menu. (#13841)
18+
-
1719

1820

1921
== Changes for Developers ==

0 commit comments

Comments
 (0)