Add a new view style - 'Detailed Tree'. This uses the list-style appearance for treeviews - e.g. The album count appears under each artist, etc.

This commit is contained in:
craig.p.drummond
2013-01-21 19:44:43 +00:00
committed by craig.p.drummond
parent 915578a92b
commit 319c91c63b
11 changed files with 101 additions and 43 deletions

View File

@@ -42,7 +42,8 @@ static void addImageSizes(QComboBox *box)
static void addViewTypes(QComboBox *box, bool iconMode=false, bool groupedTree=false)
{
box->addItem(i18n("Tree"), ItemView::Mode_Tree);
box->addItem(i18n("Simple Tree"), ItemView::Mode_SimpleTree);
box->addItem(i18n("Detailed Tree"), ItemView::Mode_DetailedTree);
if (groupedTree) {
box->addItem(i18n("Grouped Albums"), ItemView::Mode_GroupedTree);
}