summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scene/main/node.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index 264a152392..ad7e445b5c 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -216,14 +216,6 @@ void Node::_notification(int p_notification) {
memdelete(child);
}
} 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;
}
}