Navigation Menu

Skip to content

Commit

Permalink
Change default group by in library to album artist (#6264)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaski authored and hatstand committed Jan 21, 2019
1 parent d5eb07c commit 7f9cff0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/library/libraryfilterwidget.cpp
Expand Up @@ -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(
Expand Down

0 comments on commit 7f9cff0

Please sign in to comment.