Fix resume playback on startup

This commit is contained in:
Jonas Kvinge
2019-05-02 11:31:31 +02:00
parent 8fe0229a2c
commit ca140388d9
7 changed files with 43 additions and 28 deletions

View File

@@ -1339,6 +1339,8 @@ void Playlist::ItemsLoaded(QFuture<PlaylistItemList> future) {
QtConcurrent::run(this, &Playlist::InvalidateDeletedSongs);
}
emit PlaylistLoaded();
}
static bool DescendingIntLessThan(int a, int b) { return a > b; }