stop the playback after the clip stopped playing rather than pause. Allows you to click play again without having to move the position back.

This commit is contained in:
Thijs Wenker 2017-03-08 00:08:57 +01:00
parent b54d6cb0e1
commit b954d5b0e9

View file

@ -154,8 +154,8 @@ void Deck::processFrames() {
// if doing relative movement
emit looped();
} else {
// otherwise pause playback
pause();
// otherwise stop playback
stop();
}
return;
}