diff options
author | Ninni Pipping <over999ships@gmail.com> | 2023-06-14 10:33:04 +0200 |
---|---|---|
committer | Ninni Pipping <over999ships@gmail.com> | 2023-06-20 08:40:35 +0200 |
commit | 4492f7ff970e766dccf85e4a59c9a984ebfb759b (patch) | |
tree | 6477ec656e050fa3fdec5d087af764797fea20f8 | |
parent | 217a20a8a09bc305674bf3790c29cf2e8e257553 (diff) | |
download | redot-engine-4492f7ff970e766dccf85e4a59c9a984ebfb759b.tar.gz |
Make `NinePatchRect` listen to texture changes
-rw-r--r-- | scene/gui/nine_patch_rect.cpp | 16 | ||||
-rw-r--r-- | scene/gui/nine_patch_rect.h | 2 |
2 files changed, 18 insertions, 0 deletions
diff --git a/scene/gui/nine_patch_rect.cpp b/scene/gui/nine_patch_rect.cpp index d0618c7c2f..68e2db7cfd 100644 --- a/scene/gui/nine_patch_rect.cpp +++ b/scene/gui/nine_patch_rect.cpp @@ -30,6 +30,7 @@ #include "nine_patch_rect.h" +#include "core/core_string_names.h" #include "scene/scene_string_names.h" #include "servers/rendering_server.h" @@ -89,11 +90,26 @@ void NinePatchRect::_bind_methods() { BIND_ENUM_CONSTANT(AXIS_STRETCH_MODE_TILE_FIT); } +void NinePatchRect::_texture_changed() { + queue_redraw(); + update_minimum_size(); +} + void NinePatchRect::set_texture(const Ref<Texture2D> &p_tex) { if (texture == p_tex) { return; } + + if (texture.is_valid()) { + texture->disconnect(CoreStringNames::get_singleton()->changed, callable_mp(this, &NinePatchRect::_texture_changed)); + } + texture = p_tex; + + if (texture.is_valid()) { + texture->connect(CoreStringNames::get_singleton()->changed, callable_mp(this, &NinePatchRect::_texture_changed)); + } + queue_redraw(); update_minimum_size(); emit_signal(SceneStringNames::get_singleton()->texture_changed); diff --git a/scene/gui/nine_patch_rect.h b/scene/gui/nine_patch_rect.h index 134b23c3d6..ae9fab1773 100644 --- a/scene/gui/nine_patch_rect.h +++ b/scene/gui/nine_patch_rect.h @@ -51,6 +51,8 @@ public: AxisStretchMode axis_h = AXIS_STRETCH_MODE_STRETCH; AxisStretchMode axis_v = AXIS_STRETCH_MODE_STRETCH; + void _texture_changed(); + protected: void _notification(int p_what); virtual Size2 get_minimum_size() const override; |