Skip to content

Commit e0d79c3

Browse files
authored
Merge daedf7d into a9bcdff
2 parents a9bcdff + daedf7d commit e0d79c3

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

source/UIAHandler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ def _isUIAWindowHelper(self, hwnd: int, isDebug=False) -> bool: # noqa: C901
11721172
# Testing shows that these controls emits proper events but they are ignored by NVDA.
11731173
try:
11741174
isOfficeApp = appModule.productName.startswith(("Microsoft Office", "Microsoft Outlook"))
1175-
isOffice2013OrOlder = int(appModule.productVersion.split(".")[0]) < 16
1175+
isOffice2013OrOlder = isOfficeApp and int(appModule.productVersion.split(".")[0]) < 16
11761176
except RuntimeError:
11771177
# this is not necessarily an office app, or an app with version information, for example geekbench 6.
11781178
log.debugWarning(

user_docs/en/changes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
* In WinUI 3 apps including Microsoft Copilot and parts of Windows 11 File Explorer, NVDA will no longer fail to announce controls when using mouse and touch interaction. (#17407, #17771, @josephsl)
1414
* Fixed some rare cases where NVDA playing sounds could result in unexpected errors. (#17918, @LeonarddeR)
1515

16+
* In Geekbench 6.4, NVDA can again read the ribbon and options within. (#17892, @mzanm)
17+
1618
### Changes for Developers
1719

1820
Please refer to [the developer guide](https://www.nvaccess.org/files/nvda/documentation/developerGuide.html#API) for information on NVDA's API deprecation and removal process.

0 commit comments

Comments
 (0)