summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2019-10-01 09:57:11 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2019-10-01 10:06:03 -0300
commitbe865871f4dcf785e0008300e57b5d4434970746 (patch)
treeb355fe953ae0e108f5f4891744d737cd5eb29c4d
parent5fa6f9d7ff7d1f7eec19d1e97b58b92526b0cd9d (diff)
Fix text search bar not correctly switching from replacing to just searching
-rw-r--r--editor/code_editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index b6cd69c3cd..4c31797c50 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -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);
}