-
Notifications
You must be signed in to change notification settings - Fork 568
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
Ctrl+A
doesn't select all text in a TextBox
#1854
Comments
This is supposed to be handled at the IME level. On platforms that don't currently have 'real' ime, you might take a look at the |
It already receives SelectAll, but SelectAll doesn't do anything on TextBoxes. Although it doesn't receive it from |
do you mean |
oh I meant SELECT_ALL. Seems like that's different from SelectAll. Why is it so different from Ctrl+C, V, R and co.? |
yea, it's fiddly. |
I think that probably |
In any case, this still happens. I can't Ctrl+A the text in the Textbox example. |
It seems like an implementation along those lines needs to be added, but I'm not 100% sure how to do this correctly. usize::MAX is certainly wrong and I'm not at all sure how IME works, which is the unused return type. Also I've seen that
EditSession
also just straight up hasdo_action
which can handleTextAction::SelectAll
, among all the others. So is there some duplication going on already with the other actions?!The text was updated successfully, but these errors were encountered: