Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explorer: do not announce 'unknown' when opening quick link menu and selecting items from it (Windows+X) #8138

Merged
merged 2 commits into from Apr 20, 2018

Conversation

josephsl
Copy link
Collaborator

@josephsl josephsl commented Apr 2, 2018

Link to issue number:

Fixes #8137

Summary of the issue:

Do not announce "unknown" when opening quick link menu and selecting items in there (Windows+X).

Description of how this pull request fixes the issue:

Windows with the class name of LauncherTipWnd and ApplicationManager_DesktopShellWindow fires focus events, causing NVDA to announce 'unknown' when opening quick link menu (Windows+X) and selecting an item from this menu. Suppress this if possible.

Testing performed:

Tested on version 1803 and earlier builds.

Known issues with pull request:

None

Change log entry:

Bug fixes: On Windows 8 and later, NVDA will no longer announce "unknown" when opening quick link menu )Windows+X) and selecting items from this menu. (#8137)

…dows+X). Re nvaccess#8137.

Windows with the class name of LauncherTipWnd and ApplicationManager_DesktopShellWindow fires focus events, causing NVDA to announce 'unknown' when opening quick link menu (Windows+X) and selecting an item from this menu. Suppress this if possible.
@@ -267,10 +267,11 @@ def event_gainFocus(self, obj, nextHandler):
# Therefore, if there is a pending focus event, don't bother handling this event.
return

if wClass == "ForegroundStaging":
if wClass in ("ForegroundStaging", "LauncherTipWnd", "ApplicationManager_DesktopShellWindow"):
# #5116: The Windows 10 Task View fires foreground/focus on this weird invisible window before and after it appears.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"This weird invisible window" needs clarification now. Please change this line to mention ForegroundStaging",

@josephsl
Copy link
Collaborator Author

josephsl commented Apr 5, 2018 via email

michaelDCurran added a commit that referenced this pull request Apr 6, 2018
@michaelDCurran michaelDCurran merged commit 2977f5f into nvaccess:master Apr 20, 2018
@nvaccessAuto nvaccessAuto added this to the 2018.2 milestone Apr 20, 2018
@josephsl josephsl deleted the i8137explorerUnknownFocus branch September 16, 2019 02:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Windows 10: NVDA announces "unknown" when opening and closing quick link menu (Windows+X)
4 participants