-
-
Notifications
You must be signed in to change notification settings - Fork 22k
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
Refocus Code Editor after pressing ReplaceAll button #70520
Refocus Code Editor after pressing ReplaceAll button #70520
Conversation
227f51c
to
3d59654
Compare
shouldn't you also change the replace function to do the same? pressing the replace button also takes focus |
Oh right. |
7b77f1c
to
d1470e9
Compare
done |
d1470e9
to
e98cd3f
Compare
Wait no |
e98cd3f
to
142c83b
Compare
Looking at the code again after months, I just found much better solution for #70049 . |
142c83b
to
6864ab8
Compare
Could you rebase to get rid of the merge commit? Also, the commit message "Fixed: ESC key not closing the FindReplaceBar" and the PR title "Refocus Code Editor after pressing ReplaceAll button" don't match, I'm not sure which is more accurate (the former of the PR title is better though). Could be worth clarifying. |
@@ -126,7 +126,7 @@ void FindReplaceBar::unhandled_input(const Ref<InputEvent> &p_event) { | |||
if (k.is_valid() && k->is_action_pressed(SNAME("ui_cancel"), false, true)) { | |||
Control *focus_owner = get_viewport()->gui_get_focus_owner(); | |||
|
|||
if (text_editor->has_focus() || (focus_owner && vbc_lineedit->is_ancestor_of(focus_owner))) { | |||
if (text_editor->has_focus() || (focus_owner && this->is_ancestor_of(focus_owner))) { |
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.
if (text_editor->has_focus() || (focus_owner && this->is_ancestor_of(focus_owner))) { | |
if (text_editor->has_focus() || (focus_owner && is_ancestor_of(focus_owner))) { |
The PR title is outdated and doesn't describe the changes anymore. |
@KoBeWi @akien-mga @YuriSizov I made a new PR #79079 .... I don't what went wrong with my current local branch... It is very messy because of the merge commits and rebase stuffs. |
Fix: #70049
for 3.x: #70521