From c1d9bc046da972db036311c9baac50f5861e7ba2 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Mon, 30 Sep 2019 22:05:03 +0200 Subject: [PATCH] Change context default --- src/context/contextview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/context/contextview.cpp b/src/context/contextview.cpp index 6cb7ba4d2..d749b5510 100644 --- a/src/context/contextview.cpp +++ b/src/context/contextview.cpp @@ -156,8 +156,8 @@ void ContextView::AddActions() { s.beginGroup(kSettingsGroup); action_show_data_->setChecked(s.value("show_data", true).toBool()); action_show_output_->setChecked(s.value("show_output", true).toBool()); - action_show_albums_->setChecked(s.value("show_albums", true).toBool()); - action_show_lyrics_->setChecked(s.value("show_lyrics", false).toBool()); + action_show_albums_->setChecked(s.value("show_albums", false).toBool()); + action_show_lyrics_->setChecked(s.value("show_lyrics", true).toBool()); s.endGroup(); connect(action_show_data_, SIGNAL(triggered()), this, SLOT(ActionShowData()));