Merge pull request #103806 from arkology/find-replace-bar-ui

`FindReplaceBar`: Fix "Replace (All)" buttons repositioning, improve "Hide" button visual feedback
This commit is contained in:
Thaddeus Crews 2025-04-30 09:18:46 -05:00
commit 32eafc18b4
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
2 changed files with 12 additions and 13 deletions

View file

@ -79,14 +79,13 @@ class FindReplaceBar : public HBoxContainer {
Button *find_next = nullptr;
CheckBox *case_sensitive = nullptr;
CheckBox *whole_words = nullptr;
TextureButton *hide_button = nullptr;
Button *hide_button = nullptr;
LineEdit *replace_text = nullptr;
Button *replace = nullptr;
Button *replace_all = nullptr;
CheckBox *selection_only = nullptr;
VBoxContainer *vbc_lineedit = nullptr;
HBoxContainer *hbc_button_replace = nullptr;
HBoxContainer *hbc_option_replace = nullptr;