Fix deleting multiple covers in album cover manager

This commit is contained in:
Jonas Kvinge
2021-03-07 03:43:49 +01:00
parent bbcd6a3261
commit 04bbff338d
4 changed files with 23 additions and 23 deletions

View File

@@ -119,10 +119,10 @@ class AlbumCoverChoiceController : public QWidget {
QUrl UnsetCover(Song *song);
// Clears any album cover art associated with the song.
void ClearCover(Song *song);
void ClearCover(Song *song, const bool clear_art_automatic = false);
// Physically deletes associated album covers from disk.
bool DeleteCover(Song *song);
bool DeleteCover(Song *song, const bool manually_unset = false);
// Shows the cover of given song in it's original size.
void ShowCover(const Song &song, const QImage &image = QImage());