You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to be override StyledTextAreaBehavrior#mouseReleased's dragSelection handling. Instead of moving the selected text to where the user releases the mouse, I want to copy that text there and style it underneath a different style.
Right now, my two options are:
rewrite all of the functionality of this code (enum and overriding default event handling) just to fix this one instance
inline dragSelection into StyledTextArea itself and override only the MouseReleased event handling.
The text was updated successfully, but these errors were encountered:
On second thought, it'd be simpler to have a reference to StyledTextAreaBehavior within StyledTextArea so that the area itself can return the drag state.
I want to be override
StyledTextAreaBehavrior#mouseReleased
's dragSelection handling. Instead of moving the selected text to where the user releases the mouse, I want to copy that text there and style it underneath a different style.Right now, my two options are:
StyledTextArea
itself and override only the MouseReleased event handling.The text was updated successfully, but these errors were encountered: