diff options
author | Giganzo <158825920+Giganzo@users.noreply.github.com> | 2024-11-19 11:25:28 +0100 |
---|---|---|
committer | Giganzo <158825920+Giganzo@users.noreply.github.com> | 2024-11-19 11:25:28 +0100 |
commit | 61cf0253ce4204d2911cd91d15ec9a2c78c78c7d (patch) | |
tree | fcf78bc75019bc7ee024bc27f268d12e838ebae7 /editor/plugins | |
parent | 9e6098432aac35bae42c9089a29ba2a80320d823 (diff) | |
download | redot-engine-61cf0253ce4204d2911cd91d15ec9a2c78c78c7d.tar.gz |
Fix toast spam about child of container position
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index f91a052a24..e17a12dbb2 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -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); } } |