diff --git a/scene/gui/texture_button.cpp b/scene/gui/texture_button.cpp index f43e3d1a9d..8659ea06a2 100644 --- a/scene/gui/texture_button.cpp +++ b/scene/gui/texture_button.cpp @@ -295,11 +295,13 @@ void TextureButton::set_normal_texture(const Ref &p_normal) { void TextureButton::set_pressed_texture(const Ref &p_pressed) { pressed = p_pressed; update(); + minimum_size_changed(); } void TextureButton::set_hover_texture(const Ref &p_hover) { hover = p_hover; update(); + minimum_size_changed(); } void TextureButton::set_disabled_texture(const Ref &p_disabled) { @@ -310,6 +312,7 @@ void TextureButton::set_disabled_texture(const Ref &p_disabled) { void TextureButton::set_click_mask(const Ref &p_click_mask) { click_mask = p_click_mask; update(); + minimum_size_changed(); } Ref TextureButton::get_normal_texture() const {