You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I discovered this as I've beefed up how keyboard nav works in #3627.
Examples:
ListView - blindly returns true from MoveUp/MoveDown even if the selection was not changed (e.g. MoveUp when at the top of the list). As a result, pressing Up when at the top of the list does not allow keyboard nav to change focus to the "previous view".
TableView - blindly returns true from all relevant Command handlers. No arrow keys work to move to next/prev view. In addition, TableView always return true from the Command.Accept handler. This prevents the default button in a Dialog from working when a TableView is used.
I will be adding an all-views test in #3627 that highlights any view that behaves improperly here...
The text was updated successfully, but these errors were encountered:
I discovered this as I've beefed up how keyboard nav works in #3627.
Examples:
ListView
- blindly returnstrue
fromMoveUp/MoveDown
even if the selection was not changed (e.g.MoveUp
when at the top of the list). As a result, pressing Up when at the top of the list does not allow keyboard nav to change focus to the "previous view".TableView
- blindly returnstrue
from all relevant Command handlers. No arrow keys work to move to next/prev view. In addition,TableView
always returntrue
from theCommand.Accept
handler. This prevents the default button in a Dialog from working when a TableView is used.I will be adding an all-views test in #3627 that highlights any view that behaves improperly here...
The text was updated successfully, but these errors were encountered: