Save the playlist after editing fields of files in it - affects files that are not in the library.

This commit is contained in:
David Sansome 2011-08-27 23:09:42 +01:00
parent 9312f153b7
commit 804cbbc14e
2 changed files with 4 additions and 0 deletions

View File

@ -1531,6 +1531,8 @@ void Playlist::ReloadItems(const QList<int>& rows) {
emit dataChanged(index(row, 0), index(row, ColumnCount-1));
}
}
Save();
}
void Playlist::RateSong(const QModelIndex& index, double rating) {

View File

@ -1435,6 +1435,8 @@ void MainWindow::EditTagDialogAccepted() {
// This is really lame but we don't know what rows have changed
ui_->playlist->view()->update();
playlists_->current()->Save();
}
void MainWindow::RenumberTracks() {