From 1ca1927904500daead41ed797a960e6da185f9af Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 15 Mar 2020 02:56:22 +0100 Subject: [PATCH] Only search for cover automatically for collection songs --- src/core/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mainwindow.cpp b/src/core/mainwindow.cpp index b6e117fd1..8963b5646 100644 --- a/src/core/mainwindow.cpp +++ b/src/core/mainwindow.cpp @@ -2567,7 +2567,7 @@ void MainWindow::GetCoverAutomatically() { // Search for cover automatically? bool search = - (song_.source() == Song::Source_LocalFile || song_.source() == Song::Source_Collection || song_.source() == Song::Source_CDDA) && + song_.source() == Song::Source_Collection && album_cover_choice_controller_->search_cover_auto_action()->isChecked() && !song_.has_manually_unset_cover() && !song_.art_automatic_is_valid() &&