From 00d6e0a628d5814bba4be08949a94bbe1c38f266 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 16 Jul 2022 15:16:43 +0200 Subject: [PATCH] Hide the search bar by default. --- modules/text_editor/text_editor_vanilla_editor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/text_editor/text_editor_vanilla_editor.cpp b/modules/text_editor/text_editor_vanilla_editor.cpp index 4724ba57c..2cf5fa0be 100644 --- a/modules/text_editor/text_editor_vanilla_editor.cpp +++ b/modules/text_editor/text_editor_vanilla_editor.cpp @@ -236,6 +236,7 @@ TextEditorVanillaEditor::TextEditorVanillaEditor() { _find_replace_bar = memnew(FindReplaceBar); _find_replace_bar->set_text_edit(text_editor); add_child(_find_replace_bar); + _find_replace_bar->hide(); HBoxContainer *file_info = memnew(HBoxContainer); add_child(file_info);