From 440a223bfb5c0f2dcc88e3c4ed2c7742670733ac Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Thu, 6 Sep 2018 17:37:50 +0200 Subject: [PATCH] Fix saving search_for_cover_auto --- 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 b8ac60371..3d37cf5ba 100644 --- a/src/core/mainwindow.cpp +++ b/src/core/mainwindow.cpp @@ -2352,7 +2352,7 @@ void MainWindow::ShowCover() { void MainWindow::SearchCoverAutomatically() { QSettings s; - s.beginGroup(PlaybackSettingsPage::kSettingsGroup); + s.beginGroup(kSettingsGroup); s.setValue("search_for_cover_auto", album_cover_choice_controller_->search_cover_auto_action()->isChecked()); s.endGroup(); GetCoverAutomatically();