diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-02 18:18:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-02 18:18:33 +0200 |
commit | d9277fdab8bca6b89c5bc0fc37a442ff8df9abcf (patch) | |
tree | be2ebc46189416073b4cd6026a6d86009fac88b8 /scene | |
parent | 0c8f562711a51dd73a824f9a4010fc4825c4ccce (diff) | |
parent | c6a39cd9524b82335b47889e8d77618cc20547f7 (diff) |
Merge pull request #61629 from Geometror/fix-graphedit-comment-nodes
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/graph_edit.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scene/gui/graph_edit.cpp b/scene/gui/graph_edit.cpp index 446d9e800a..8ad55fc6ef 100644 --- a/scene/gui/graph_edit.cpp +++ b/scene/gui/graph_edit.cpp @@ -508,8 +508,9 @@ void GraphEdit::_notification(int p_what) { void GraphEdit::_update_comment_enclosed_nodes_list(GraphNode *p_node, HashMap<StringName, Vector<GraphNode *>> &p_comment_enclosed_nodes) { Rect2 comment_node_rect = p_node->get_rect(); - Vector<GraphNode *> enclosed_nodes; + comment_node_rect.size *= zoom; + Vector<GraphNode *> enclosed_nodes; for (int i = 0; i < get_child_count(); i++) { GraphNode *gn = Object::cast_to<GraphNode>(get_child(i)); if (!gn || gn->is_selected()) { @@ -517,6 +518,8 @@ void GraphEdit::_update_comment_enclosed_nodes_list(GraphNode *p_node, HashMap<S } Rect2 node_rect = gn->get_rect(); + node_rect.size *= zoom; + bool included = comment_node_rect.encloses(node_rect); if (included) { enclosed_nodes.push_back(gn); |