From 9e4eefc6fd1dc37b5a891dd228809ccf09cbf216 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 11 Apr 2015 16:44:35 +0200 Subject: [PATCH] DolphinQt: Sort game list by ascending title order by default --- Source/Core/DolphinQt/GameList/GameTree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/GameList/GameTree.cpp b/Source/Core/DolphinQt/GameList/GameTree.cpp index 7cf0c874ca..e5039751b2 100644 --- a/Source/Core/DolphinQt/GameList/GameTree.cpp +++ b/Source/Core/DolphinQt/GameList/GameTree.cpp @@ -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*))); }