Skip to content

Commit

Permalink
[ui] panorama viewer: disable sequence caching
Browse files Browse the repository at this point in the history
  • Loading branch information
mugulmd committed Jul 12, 2023
1 parent 73533cf commit 4f61fd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion meshroom/ui/qml/Viewer/FloatImage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ AliceVision.FloatImageViewer {

property int pointsNumber: (surface.subdivisions + 1) * (surface.subdivisions + 1);

property int index: 0;
property int idView: 0;

clearBeforeLoad: false
Expand Down
4 changes: 2 additions & 2 deletions meshroom/ui/qml/Viewer/PanoramaViewer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -293,15 +293,15 @@ AliceVision.PanoramaViewer {
'surface.pitch': Qt.binding(function() { return root.pitch; }),
'surface.yaw': Qt.binding(function() { return root.yaw; }),
'surface.roll': Qt.binding(function() { return root.roll; }),
'index' : index,
'idView': Qt.binding(function() { return idViewItem; }),
'gamma': Qt.binding(function() { return hdrImageToolbar.gammaValue; }),
'gain': Qt.binding(function() { return hdrImageToolbar.gainValue; }),
'channelModeString': Qt.binding(function() { return hdrImageToolbar.channelModeValue; }),
'downscaleLevel' : Qt.binding(function() { return downscale; }),
'source': Qt.binding(function() { return sourceItem; }),
'surface.msfmData': Qt.binding(function() { return root.msfmData }),
'canBeHovered': true
'canBeHovered': true,
'useSequence': false
})
imageLoaded = Qt.binding(function() { return repeater.itemAt(index).item.status === Image.Ready ? true : false; })
}
Expand Down

0 comments on commit 4f61fd5

Please sign in to comment.