diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-22 14:54:13 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-22 14:54:13 -0600 |
commit | d6ad0f65d84489081d05dbe9e731e02e1a93be28 (patch) | |
tree | 8a73c3ba8b8ed25df68eeb5ebb2ce4d56c3e24d4 /editor/plugins | |
parent | 47f3e953085a61eb619876959639c21b7b35b5c1 (diff) | |
parent | 61cf0253ce4204d2911cd91d15ec9a2c78c78c7d (diff) | |
download | redot-engine-d6ad0f65d84489081d05dbe9e731e02e1a93be28.tar.gz |
Merge pull request #99482 from Giganzo/toast_and_spam
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); } } |