-
Notifications
You must be signed in to change notification settings - Fork 236
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
Mouse-Related events aren't overrideable like KeyEvents are #217
Comments
Good point. We should investigate how to port the mouse event handling to the same approach that is used for key handling. |
Oh, I see you already did that :) |
😄 Yup! |
So...... this issue and others I've opened (#218, #223, #152) have been resolved in the current |
Thanks for checking up on them. I think we can close them now :) |
Resolved via ca3b771 |
In
StyledTextAreaBehavior
,MouseEvent
s are handled usingEventStream
s which don't take into consideration if theMouseEvent
is already consumed (unlikeEventHandlerTemplate
andKeyEvent
s):The following summarized code doesn't work:
If I want to customize the MouseEvent handling, it can only be done by adding an
EventFilter
The text was updated successfully, but these errors were encountered: