diff options
| author | Michael Maltese <michaeljosephmaltese@gmail.com> | 2017-05-27 18:58:27 -0700 |
|---|---|---|
| committer | Michael Maltese <michaeljosephmaltese@gmail.com> | 2017-05-29 17:32:40 -0700 |
| commit | 8bbc31e0a27c81a2e2ea4f07f11fac4602aa57f7 (patch) | |
| tree | aa293c2410bdc31b27c9147fa80608d8717b461e /Source | |
| parent | 051cbf1962e8add8127c0f3c39f84e9113792d00 (diff) | |
GameList: sort case-insensitively
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt2/GameList/GameList.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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); |
