-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Listboxes with Rearrangeable Options: Add keyboard commands for multi…
…ple selection (pull #1344) Resolves issue #919 by adding the following commands for selecting options: - Shift + arrow keys - Control + Shift + home and end - Control + A, command-a on macOS - Shift + Click Adds regression tests for the commands. Co-authored-by: Matt King <[email protected]> Co-authored-by: Carolyn MacLeod <[email protected]>
- Loading branch information
1 parent
30aa268
commit f84febc
Showing
5 changed files
with
415 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ aria.KeyCode = { | |
BACKSPACE: 8, | ||
TAB: 9, | ||
RETURN: 13, | ||
SHIFT: 16, | ||
ESC: 27, | ||
SPACE: 32, | ||
PAGE_UP: 33, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.