mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Make TouchScreenButton
connections reference counted
Prevents errors when assigning the same texture to both slots
This commit is contained in:
parent
437041a983
commit
0648cc65b2
@ -42,7 +42,7 @@ void TouchScreenButton::set_texture_normal(const Ref<Texture2D> &p_texture) {
|
||||
}
|
||||
texture_normal = p_texture;
|
||||
if (texture_normal.is_valid()) {
|
||||
texture_normal->connect(SceneStringNames::get_singleton()->changed, callable_mp((CanvasItem *)this, &CanvasItem::queue_redraw));
|
||||
texture_normal->connect(SceneStringNames::get_singleton()->changed, callable_mp((CanvasItem *)this, &CanvasItem::queue_redraw), CONNECT_REFERENCE_COUNTED);
|
||||
}
|
||||
queue_redraw();
|
||||
}
|
||||
@ -60,7 +60,7 @@ void TouchScreenButton::set_texture_pressed(const Ref<Texture2D> &p_texture_pres
|
||||
}
|
||||
texture_pressed = p_texture_pressed;
|
||||
if (texture_pressed.is_valid()) {
|
||||
texture_pressed->connect(SceneStringNames::get_singleton()->changed, callable_mp((CanvasItem *)this, &CanvasItem::queue_redraw));
|
||||
texture_pressed->connect(SceneStringNames::get_singleton()->changed, callable_mp((CanvasItem *)this, &CanvasItem::queue_redraw), CONNECT_REFERENCE_COUNTED);
|
||||
}
|
||||
queue_redraw();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user