1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Fix toast spam about child of container position

This commit is contained in:
Giganzo
2024-11-19 11:25:28 +01:00
parent 9e6098432a
commit 61cf0253ce

View File

@@ -3612,7 +3612,7 @@ void CanvasItemEditor::_draw_selection() {
// Remove non-movable nodes.
for (CanvasItem *ci : selection) {
if (!_is_node_movable(ci, true)) {
if (!_is_node_movable(ci)) {
selection.erase(ci);
}
}