[ui] sequence player: minor bug fixes

This commit is contained in:
mugulmd 2023-04-25 08:07:33 -07:00 committed by Loïc Vital
parent 76f4fc82f9
commit 03dc812e5d
2 changed files with 18 additions and 5 deletions

View file

@ -435,7 +435,7 @@ FocusScope {
'canBeHovered': false,
'idView': Qt.binding(function() { return (_reconstruction ? _reconstruction.selectedViewId : -1); }),
'cropFisheye': false,
'sequence': Qt.binding(function() { return ((_reconstruction && _reconstruction.viewpoints) ? _reconstruction.allImagePaths() : []) }),
'sequence': Qt.binding(function() { return ((_reconstruction && _reconstruction.viewpoints.count > 0) ? _reconstruction.allImagePaths() : []) }),
'useSequence': Qt.binding(function() { return !useExternal && _reconstruction && (!displayedNode || outputAttribute.name == "gallery"); })
})
} else {