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

Double speaking of menu items in Windows 7 Start Menu #474

Closed
nvaccessAuto opened this issue Jan 1, 2010 · 2 comments · Fixed by #10419
Closed

Double speaking of menu items in Windows 7 Start Menu #474

nvaccessAuto opened this issue Jan 1, 2010 · 2 comments · Fixed by #10419
Assignees
Labels
Milestone

Comments

@nvaccessAuto
Copy link

Reported by jteh on 2009-11-16 03:14
We seem to get double speaking of menu items in the Windows 7 Start Menu. This occurs for all items except the first encountered when entering a sub-menu.

Str:

  1. Open the Start Menu.
  2. Press down arrow to move to the first item in the "Frequently Used Programs" menu.
    • Result: The item is only spoken once (correct).
  3. Press down arrow to move to the second item.
    • Result: The item is spoken twice.
    • Expected: It should only be spoken once.
  4. Find a sub-menu and open it.
    • Result: The first item is only spoken once (correct).
  5. Press down arrow to move to the second item.
    • Result: The item is spoken twice.
    • Expected: It should only be spoken once.
@nvaccessAuto
Copy link
Author

Comment 2 by mdcurran on 2010-01-29 07:05
Having investigated this problem, it seems that those lists are firing two focus winEvents when focus moves from one item to another. However, the two focus winEvents differe from each other in their childID, and this is why they are not just filtered out by winEventLimiter.
The first winEvent has a childID of the item, the second winEvent has a childID of self (0).
But, because NVDA (IAccessibleHandler.processFocusWinEvent) has special code to correct focus going to the list itself, the real focus is retreaved, and therefore we get two identical focus events.

One option is to:
create a sysListView32.MenuItem NVDAObject who's shouldAllowIAccessibleFocusEvent will be false if the item already has focus / is going to have focus.

@nvaccessAuto
Copy link
Author

Comment 3 by jteh on 2010-02-11 11:36
Fixed in r3500.
Changes:
Milestone changed from None to 2010.1
State: closed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants