You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 19:41:11 +00:00
Fix Control not disconnecting signal
If a Control has not parent CanvasItem and is set as top_level, then it does not disconnect from the "size_changed" signal when it leaves the Canvas. This patch corrects this.
This commit is contained in:
@@ -2885,8 +2885,8 @@ void Control::_notification(int p_notification) {
|
||||
if (data.parent_canvas_item) {
|
||||
data.parent_canvas_item->disconnect("item_rect_changed", callable_mp(this, &Control::_size_changed));
|
||||
data.parent_canvas_item = nullptr;
|
||||
} else if (!is_set_as_top_level()) {
|
||||
//disconnect viewport
|
||||
} else {
|
||||
// Disconnect viewport.
|
||||
Viewport *viewport = get_viewport();
|
||||
ERR_FAIL_COND(!viewport);
|
||||
viewport->disconnect("size_changed", callable_mp(this, &Control::_size_changed));
|
||||
|
||||
Reference in New Issue
Block a user