1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-07 19:53:17 +00:00

Merge pull request #32468 from YeldhamDev/code_replace_hide_fix

Fix text search bar not correctly switching from replacing to just searching
This commit is contained in:
Rémi Verschelde
2019-10-01 19:57:51 +02:00
committed by GitHub

View File

@@ -456,10 +456,10 @@ void FindReplaceBar::_show_search(bool p_focus_replace, bool p_show_only) {
void FindReplaceBar::popup_search(bool p_show_only) {
if (!is_visible())
replace_text->hide();
replace_text->hide();
hbc_button_replace->hide();
hbc_option_replace->hide();
_show_search(false, p_show_only);
}