diff options
Diffstat (limited to 'editor/multi_node_edit.h')
-rw-r--r-- | editor/multi_node_edit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/multi_node_edit.h b/editor/multi_node_edit.h index 000d41c4c1..32fe7402fd 100644 --- a/editor/multi_node_edit.h +++ b/editor/multi_node_edit.h @@ -73,7 +73,7 @@ public: return false; } for (int i = 0; i < get_node_count(); i++) { - if (nodes.find(p_other->get_node(i)) == -1) { + if (!nodes.has(p_other->get_node(i))) { return false; } } |