aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorin1tiate <radwoodward@vikings.grayson.edu>2021-08-11 20:14:35 -0500
committerin1tiate <radwoodward@vikings.grayson.edu>2021-08-11 20:14:35 -0500
commit2a18c1cdec54a324c6ba9834d6e6b05cc46f2535 (patch)
treea4ae3a0aa2c64c49427ebe5f4ba685ec24bd6ab6 /src
parent42760bc3f86e1d38acbf6c3c9f675dbf6acc37c8 (diff)
wait for thread to finish before starting new one
Diffstat (limited to 'src')
-rw-r--r--src/aolayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aolayer.cpp b/src/aolayer.cpp
index 25873fee..99524947 100644
--- a/src/aolayer.cpp
+++ b/src/aolayer.cpp
@@ -529,8 +529,8 @@ void CharLayer::movie_ticker()
void AOLayer::movie_ticker()
{
++frame;
- QFuture<void> future;
if (frame >= movie_frames.size() && frame < max_frames) { // need to load the image
+ future.waitForFinished(); // Do Not want this to be running twice
future = QtConcurrent::run(this, &AOLayer::load_next_frame);
}
else if (frame >= max_frames) {