From 13cf88073b7d4a114f65e90796ff2043bec85289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pa=CC=84vels=20Nadtoc=CC=8Cajevs?= <7645683+bruvzg@users.noreply.github.com> Date: Fri, 11 Apr 2025 08:20:20 +0300 Subject: [PATCH] Fix graph node resizing. --- scene/gui/graph_node.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scene/gui/graph_node.cpp b/scene/gui/graph_node.cpp index 69b26173d6..aad854762b 100644 --- a/scene/gui/graph_node.cpp +++ b/scene/gui/graph_node.cpp @@ -404,6 +404,7 @@ void GraphNode::_accessibility_action_slot(const Variant &p_data) { } void GraphNode::gui_input(const Ref &p_event) { + ERR_FAIL_COND(p_event.is_null()); if (port_pos_dirty) { _port_pos_update(); } @@ -534,6 +535,8 @@ void GraphNode::gui_input(const Ref &p_event) { queue_accessibility_update(); queue_redraw(); } + + GraphElement::gui_input(p_event); } void GraphNode::_notification(int p_what) {