Skip to content

Commit 256fdc1

Browse files
author
Fabien Servant
committed
if player is at the end go back to 0 on play
1 parent 21c7ee6 commit 256fdc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshroom/ui/qml/Viewer/SequencePlayer.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ FloatingPane {
8282
onPlayingChanged: {
8383
if (!playing) {
8484
updateReconstructionView()
85-
} else if (playing && (frame + 1 >= frameRange + 1)) {
85+
} else if (playing && (frame + 1 >= frameRange.max + 1)) {
8686
frame = frameRange.min
8787
}
8888
viewer.playback(playing)

0 commit comments

Comments
 (0)