DolphinQt: Sort game list by ascending title order by default

This commit is contained in:
JosJuice 2015-04-11 16:44:35 +02:00
parent 1a18cad178
commit 9e4eefc6fd

View File

@ -23,7 +23,7 @@ DGameTree::DGameTree(QWidget* parent_widget) :
SetViewStyle(STYLE_TREE);
setIconSize(QSize(BANNER_WIDTH, BANNER_HEIGHT));
sortByColumn(COL_TITLE);
sortByColumn(COL_TITLE, Qt::AscendingOrder);
connect(this, SIGNAL(itemActivated(QTreeWidgetItem*, int)), this, SLOT(ItemActivated(QTreeWidgetItem*)));
}