|
@@ -623,7 +623,7 @@ void CanvasItemEditor::_find_canvas_items_at_pos(const Point2 &p_pos, Node *p_no
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
xform = vp->get_popup_base_transform();
|
|
xform = vp->get_popup_base_transform();
|
|
- if (!vp->get_visible_rect().has_point(xform.xform_inv(p_pos))) {
|
|
|
|
|
|
+ if (!vp->get_visible_rect().has_point(xform.affine_inverse().xform(p_pos))) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -726,7 +726,7 @@ void CanvasItemEditor::_find_canvas_items_in_rect(const Rect2 &p_rect, Node *p_n
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
xform = vp->get_popup_base_transform();
|
|
xform = vp->get_popup_base_transform();
|
|
- if (!vp->get_visible_rect().intersects(xform.xform_inv(p_rect))) {
|
|
|
|
|
|
+ if (!vp->get_visible_rect().intersects(xform.affine_inverse().xform(p_rect))) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|