Skip to content

Commit

Permalink
Pressing on timeline dial escapes flipping
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlamhauge committed Mar 18, 2019
1 parent c9e1ba6 commit 0e041d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core_lib/src/managers/playbackmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,10 @@ void PlaybackManager::timerTick()

void PlaybackManager::flipTimerTick()
{
if (mFlipList.count() < 2)
if (mFlipList.count() < 2 || editor()->currentFrame() != mFlipList[0])
{
mFlipTimer->stop();
editor()->scrubTo(mFlipList.last());
emit playStateChanged(false);
}
else
Expand Down

0 comments on commit 0e041d9

Please sign in to comment.