diff --git a/meshroom/ui/qml/Controls/DelegateSelectionBox.qml b/meshroom/ui/qml/Controls/DelegateSelectionBox.qml index a6034c8ac3..da9d555946 100644 --- a/meshroom/ui/qml/Controls/DelegateSelectionBox.qml +++ b/meshroom/ui/qml/Controls/DelegateSelectionBox.qml @@ -21,7 +21,7 @@ SelectionBox { let selectedIndices = []; const mappedSelectionRect = mapToItem(container, selectionRect); for (var i = 0; i < modelInstantiator.count; ++i) { - const delegate = modelInstantiator.itemAt(i); + const delegate = modelInstantiator.getItemAt(i); const delegateRect = Qt.rect(delegate.x, delegate.y, delegate.width, delegate.height); if (Geom2D.rectRectIntersect(mappedSelectionRect, delegateRect)) { selectedIndices.push(i);