-
Notifications
You must be signed in to change notification settings - Fork 20
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
C2LC-431: Add Keyboard shortcut for expand and collapse add nodes #230
base: develop-1.0
Are you sure you want to change the base?
Conversation
@@ -281,6 +282,10 @@ const VoiceOverInputScheme: KeyboardInputScheme = Object.assign({ | |||
stopProgram: { | |||
keyDef: { code: "KeyS", key: "s", altKey: true}, | |||
actionName: "stopProgram" | |||
}, | |||
expandAddNode: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For now this is fine, but as we pick up more bindings (like the help key) that are the same between all schemes, we should probably make and reuse a "common" binding definition, like we do with extended keyboard sequences. I think a TODO here would be a good idea for now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Current keyboard shortcut combinations are likely to change, so I think it makes sense to wait until we talk about rework of the keyboard shortcut combinations.
I left a small comment on the code changes, but was not able to perform QA in the time I had, as the preview deployment failed. |
I performed QA on this with a local copy of the branch. It works as expected on all browsers, and I confirmed that the change is equivalent to hitting the toggle, i.e.:
|
See C2LC-431 for details.