mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
if player is at the end go back to 0 on play
This commit is contained in:
parent
11c28cb979
commit
eef1e6414e
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ FloatingPane {
|
|||
onPlayingChanged: {
|
||||
if (!playing) {
|
||||
updateReconstructionView()
|
||||
} else if (playing && (frame + 1 >= frameRange + 1)) {
|
||||
} else if (playing && (frame + 1 >= frameRange.max + 1)) {
|
||||
frame = frameRange.min
|
||||
}
|
||||
viewer.playback(playing)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue