[Viewer] SequencePlayer: Fix check on the image status for SequencePlayer

This commit is contained in:
Candice Bentéjac 2023-12-20 18:02:07 +01:00
parent 5600c58e8f
commit 9c99efb3e4

View file

@ -87,7 +87,7 @@ FloatingPane {
interval: 1000 / m.fps
onTriggered: {
if (viewer.status !== Image.Ready) {
if (viewer.imageStatus !== Image.Ready) {
// Wait for current image to be displayed before switching to next image
return;
}