Executing AcceptDialog.push_input no longer crashes

This commit is contained in:
mashumafi 2021-10-09 20:30:14 +00:00
parent 53426bdc71
commit 80dc1cc412

View file

@ -1079,8 +1079,11 @@ Transform2D Viewport::_get_input_pre_xform() const {
}
Ref<InputEvent> Viewport::_make_input_local(const Ref<InputEvent> &ev) {
Transform2D ai = get_final_transform().affine_inverse() * _get_input_pre_xform();
if (ev.is_null()) {
return ev; // No transformation defined for null event
}
Transform2D ai = get_final_transform().affine_inverse() * _get_input_pre_xform();
return ev->xformed_by(ai);
}