Playlist: Add data changed when setting current row

This commit is contained in:
Jonas Kvinge 2024-07-09 16:21:09 +02:00
parent 9232ad0125
commit 67f04a81b3
1 changed files with 1 additions and 0 deletions

View File

@ -710,6 +710,7 @@ void Playlist::set_current_row(const int i, const AutoScroll autoscroll, const b
if (current_item_index_.isValid() && !is_stopping) {
InformOfCurrentSongChange(false);
emit dataChanged(index(current_item_index_.row(), 0), index(current_item_index_.row(), ColumnCount - 1));
emit MaybeAutoscroll(autoscroll);
}