mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 02:08:08 +02:00
[Viewer] PanoramaViewer: Fix check on the image status for the pano viewer
This commit is contained in:
parent
ea8fbf8b2e
commit
2d60ce4f5e
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ AliceVision.PanoramaViewer {
|
|||
'canBeHovered': true,
|
||||
'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 })
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue