We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c4297d8 + 13cf880 commit b546680Copy full SHA for b546680
scene/gui/graph_node.cpp
@@ -404,6 +404,7 @@ void GraphNode::_accessibility_action_slot(const Variant &p_data) {
404
}
405
406
void GraphNode::gui_input(const Ref<InputEvent> &p_event) {
407
+ ERR_FAIL_COND(p_event.is_null());
408
if (port_pos_dirty) {
409
_port_pos_update();
410
@@ -534,6 +535,8 @@ void GraphNode::gui_input(const Ref<InputEvent> &p_event) {
534
535
queue_accessibility_update();
536
queue_redraw();
537
538
+
539
+ GraphElement::gui_input(p_event);
540
541
542
void GraphNode::_notification(int p_what) {
0 commit comments