summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tangara/audio/track_queue.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tangara/audio/track_queue.cpp b/src/tangara/audio/track_queue.cpp
index 91bdda39..5d730a09 100644
--- a/src/tangara/audio/track_queue.cpp
+++ b/src/tangara/audio/track_queue.cpp
@@ -242,6 +242,8 @@ auto TrackQueue::next(Reason r) -> void {
{
const std::unique_lock<std::shared_mutex> lock(mutex_);
+ auto pos = position_;
+
if (shuffle_) {
shuffle_->next();
position_ = shuffle_->current();
@@ -250,7 +252,9 @@ auto TrackQueue::next(Reason r) -> void {
position_++;
}
}
+
goTo(position_);
+ changed = pos != position_;
}
notifyChanged(changed, r);