File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
2430class AppModule (appModuleHandler .AppModule ):
2531
Original file line number Diff line number Diff 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 ==
You can’t perform that action at this time.
0 commit comments