-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
#17052 Error on scroll while selecting nested table #406
Conversation
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.
Rebased the branch onto latest master, added github tag. Couple of minor things.
I'm also missing a unit test for it. It would be very valuable to have one for this case.
|
||
1. Open console. | ||
2. Select cells inside nested table. | ||
3. Without releasing mouse button, move pointer to the bottom edge of the editor to cause scrolling down to the end of the editor. |
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.
Add a note that for Edge/IE it acts differently, as it does not scroll.
Ok, I've prepared unit test and added note about Edge. I've also changed references to ticket number. |
Issue was caused by the fact that mouse handler is fired also on
mousemove
and scrolling selects cell outside the nested table. Simple check if the newly selected cell is still inside the original table should do the trick.Closes #493.