1
0
Fork 0

Merge pull request #102390 from stuartcarnie/102388/fix_selection

Editor: Fix node selection within SubViewports using size 2d override
This commit is contained in:
Rémi Verschelde 2025-02-05 11:34:08 +01:00
commit ff0049e0d0
1 changed files with 2 additions and 2 deletions

View File

@ -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;
} }
} }