From 730c922cf8e367415d7b8eb9691f319ccccbb3cf Mon Sep 17 00:00:00 2001 From: hdzrvcc0x74 Date: Fri, 29 May 2026 18:27:19 +0200 Subject: [PATCH] Fix UAC slider not announcing value with arrows --- source/UIAHandler/__init__.py | 1 + user_docs/en/changes.md | 1 + 2 files changed, 2 insertions(+) diff --git a/source/UIAHandler/__init__.py b/source/UIAHandler/__init__.py index 1523ce7f399..cb023deb984 100644 --- a/source/UIAHandler/__init__.py +++ b/source/UIAHandler/__init__.py @@ -102,6 +102,7 @@ "WuDuiListView", "ComboBox", "msctls_progress32", + "msctls_trackbar32", "Edit", "CommonPlacesWrapperWndClass", "SysMonthCal32", diff --git a/user_docs/en/changes.md b/user_docs/en/changes.md index 7ec787c9f89..111a2af640f 100644 --- a/user_docs/en/changes.md +++ b/user_docs/en/changes.md @@ -21,6 +21,7 @@ * In live text regions, such as terminals, NVDA no longer freezes when substantial amounts of text are dumped to the screen. (#20177) * When an application stops responding, NVDA no longer freezes or floods its log with errors; it stays responsive and drops UIA and MSAA events from the unresponsive application until it recovers. (#16749, @heath-toby) * Reduced lag on UI Automation text change events, improving the responsiveness of controls such as combo boxes and of File Explorer, by using the cached element class name instead of a live cross-process fetch. (#16749, @heath-toby) +* Fixed UAC slider not being read when changing values with arrow keys in UI Automation. (#9356, @tareh7z) * NVDA recovers more quickly when an application stops responding; in particular, switching away from a hung application returns NVDA to responsiveness immediately. (#20169, @heath-toby) * In Mozilla Firefox, reporting annotation details now works correctly in focus mode on controls which are not editable text. (#20208, @jcsteh) * NVDA now announces heading, paragraph, list, and list item children inside webpage alerts (`role="alert"`). (#14990, @mehm8128)