Merge pull request #77867 from Sauermann/revert-move-child-update

Don't update mouse cursor state on child order changed
This commit is contained in:
Rémi Verschelde 2023-06-05 13:43:11 +02:00
commit 85c908654c
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -216,14 +216,6 @@ void Node::_notification(int p_notification) {
memdelete(child); memdelete(child);
} }
} break; } break;
case NOTIFICATION_CHILD_ORDER_CHANGED: {
// The order, in which canvas items are drawn gets rearranged.
// This makes it necessary to update mouse cursor and send according mouse_enter/mouse_exit signals for Control nodes.
if (get_viewport()) {
get_viewport()->update_mouse_cursor_state();
}
} break;
} }
} }