diff options
author | kobewi <kobewi4e@gmail.com> | 2022-02-05 02:11:32 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-02-05 02:11:32 +0100 |
commit | e714f5e56e1c581e448ee683b2f1a48e9edd0e05 (patch) | |
tree | 2c71824bde53e94691f769414f38f7beb9098d70 /editor | |
parent | d091995e058e3b143ed44f484a05058c856922cc (diff) |
Rework TextureButton stretch
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index dfc95fb676..96c0f3a209 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -2007,7 +2007,7 @@ FindBar::FindBar() { hide_button = memnew(TextureButton); add_child(hide_button); hide_button->set_focus_mode(FOCUS_NONE); - hide_button->set_expand(true); + hide_button->set_ignore_texture_size(true); hide_button->set_stretch_mode(TextureButton::STRETCH_KEEP_CENTERED); hide_button->connect("pressed", callable_mp(this, &FindBar::_hide_bar)); } |