Change default group by in library to album artist (#6264)

This commit is contained in:
Jonas Kvinge 2019-01-21 22:39:39 +01:00 committed by John Maguire
parent d5eb07c6f0
commit 7f9cff03b1
1 changed files with 2 additions and 1 deletions

View File

@ -258,7 +258,8 @@ void LibraryFilterWidget::SetLibraryModel(LibraryModel* model) {
s.beginGroup(settings_group_);
model_->SetGroupBy(LibraryModel::Grouping(
LibraryModel::GroupBy(
s.value("group_by1", int(LibraryModel::GroupBy_Artist)).toInt()),
s.value("group_by1", int(LibraryModel::GroupBy_AlbumArtist))
.toInt()),
LibraryModel::GroupBy(
s.value("group_by2", int(LibraryModel::GroupBy_Album)).toInt()),
LibraryModel::GroupBy(