From Brad Colbert, removed inappropriate rewind on non looping code path.

This commit is contained in:
Robert Osfield
2007-05-11 08:30:20 +00:00
parent 4eb8427327
commit 0fd46ae957

View File

@@ -254,7 +254,10 @@ void QuicktimeImageStream::run()
if(_current >= _len)
{
pause();
rewind();
// Don't rewind to the begining if the movie has completed.
// Someone may want to see the last frame displayed.
//rewind();
}
// orig
//pause();