mirror of
https://github.com/godotengine/godot.git
synced 2024-12-02 09:02:45 +00:00
GraphEdit: Fix regression with GraphNode mouse filter
PR #35068 made Container (which GraphNode inherits) default to MOUSE_FILTER_PASS, so I removed the manual override, but it turns out that GraphNode's constructor still overrides it to MOUSE_FILTER_STOP. Another fix could be to remove the STOP in the constructor, but I don't know if it's there for a specific reason (e.g. to have GraphNodes STOP by default, but PASS in a specific case). Fixes #35978.
This commit is contained in:
parent
642de8e789
commit
e18c65634f
@ -261,6 +261,7 @@ void GraphEdit::add_child_notify(Node *p_child) {
|
||||
gn->connect("raise_request", this, "_graph_node_raised", varray(gn));
|
||||
gn->connect("item_rect_changed", connections_layer, "update");
|
||||
_graph_node_moved(gn);
|
||||
gn->set_mouse_filter(MOUSE_FILTER_PASS);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user