Skip to content

Commit b546680

Browse files
committed
Merge pull request godotengine#105265 from bruvzg/gr_node_resize
Fix graph node resizing.
2 parents c4297d8 + 13cf880 commit b546680

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scene/gui/graph_node.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,7 @@ void GraphNode::_accessibility_action_slot(const Variant &p_data) {
404404
}
405405

406406
void GraphNode::gui_input(const Ref<InputEvent> &p_event) {
407+
ERR_FAIL_COND(p_event.is_null());
407408
if (port_pos_dirty) {
408409
_port_pos_update();
409410
}
@@ -534,6 +535,8 @@ void GraphNode::gui_input(const Ref<InputEvent> &p_event) {
534535
queue_accessibility_update();
535536
queue_redraw();
536537
}
538+
539+
GraphElement::gui_input(p_event);
537540
}
538541

539542
void GraphNode::_notification(int p_what) {

0 commit comments

Comments
 (0)