-
-
Notifications
You must be signed in to change notification settings - Fork 400
fix(renderwindowinteractor): observe KeyPress events on RW container … #3239
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
Conversation
7c40da4 to
5301ebb
Compare
5301ebb to
5c6fc0f
Compare
|
I defer to Forrest on that one |
|
Since this is a breaking change, let's merge this into the beta branch. I need to merge my "named parameters" branch into beta as well. That way, we have one major change as opposed to two. |
I'm fine with merging it into the beta branch for now, but can the final merge into master happen soon-ish (e.g. in no more than 1 week)? |
Sure. I think we're good to go with the existing changes in beta (the volume mapper changes). I'll check to see if it merges cleanly. |
5c6fc0f to
f622b7f
Compare
…instead of document Observing on document produces many false positives. For example, a key press event was for an <input> element but RWI was also processing it. BREAKING CHANGE: This may break key press event current behavior. tabIndex=0 is now added on RW containers. fix Kitware#1856
f622b7f to
8cba154
Compare
|
🎉 This PR is included in version 34.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |

…instead of document
Observing on document produces many false positives. For example, a key press event was for an element but RWI was also processing it.
BREAKING CHANGE: This may break key press event current behavior. Use tabIndex=0 on RW containers to fix it.
fix #1856
Context
Read the description on #1856
Results
This time, it enforces the events are observed on the RW and not on the whole document.
This is important when there are multiple RW in a document.
Changes
PR and Code Checklist
npm run reformatto have correctly formatted codeTesting