From 8bbc31e0a27c81a2e2ea4f07f11fac4602aa57f7 Mon Sep 17 00:00:00 2001 From: Michael Maltese Date: Sat, 27 May 2017 18:58:27 -0700 Subject: [PATCH] GameList: sort case-insensitively --- Source/Core/DolphinQt2/GameList/GameList.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt2/GameList/GameList.cpp b/Source/Core/DolphinQt2/GameList/GameList.cpp index 4a1c3d3278..10bbd128a9 100644 --- a/Source/Core/DolphinQt2/GameList/GameList.cpp +++ b/Source/Core/DolphinQt2/GameList/GameList.cpp @@ -30,6 +30,7 @@ GameList::GameList(QWidget* parent) : QStackedWidget(parent) { m_model = new GameListModel(this); m_table_proxy = new QSortFilterProxyModel(this); + m_table_proxy->setSortCaseSensitivity(Qt::CaseInsensitive); m_table_proxy->setSourceModel(m_model); m_list_proxy = new ListProxyModel(this); m_list_proxy->setSourceModel(m_model);