[Viewer] PanoramaViewer: Fix check on the image status for the pano viewer

This commit is contained in:
Candice Bentéjac 2023-12-20 17:32:58 +01:00
parent ea8fbf8b2e
commit 2d60ce4f5e

View file

@ -290,7 +290,7 @@ AliceVision.PanoramaViewer {
'canBeHovered': true, 'canBeHovered': true,
'useSequence': false 'useSequence': false
}) })
imageLoaded = Qt.binding(function() { return repeater.itemAt(index).item.status === Image.Ready ? true : false }) imageLoaded = Qt.binding(function() { return repeater.itemAt(index).item.imageStatus === Image.Ready ? true : false })
} }
} }