From e435015476176f04dfacd866c32cf45ae913c7e6 Mon Sep 17 00:00:00 2001 From: arkology <43543909+arkology@users.noreply.github.com> Date: Tue, 2 Dec 2025 07:09:37 +0000 Subject: [PATCH] Expand Hide button in `EditorHelp` search --- editor/doc/editor_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/doc/editor_help.cpp b/editor/doc/editor_help.cpp index d36de6ebde6..73614301cfa 100644 --- a/editor/doc/editor_help.cpp +++ b/editor/doc/editor_help.cpp @@ -4933,7 +4933,7 @@ FindBar::FindBar() { hide_button->set_tooltip_text(TTR("Hide")); hide_button->set_focus_mode(FOCUS_ACCESSIBILITY); hide_button->connect(SceneStringName(pressed), callable_mp(this, &FindBar::_hide_bar)); - hide_button->set_v_size_flags(SIZE_SHRINK_CENTER); + hide_button->set_v_size_flags(SIZE_EXPAND_FILL); add_child(hide_button); }