mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 23:59:54 -06:00
GameList: sort case-insensitively
This commit is contained in:
@ -30,6 +30,7 @@ GameList::GameList(QWidget* parent) : QStackedWidget(parent)
|
|||||||
{
|
{
|
||||||
m_model = new GameListModel(this);
|
m_model = new GameListModel(this);
|
||||||
m_table_proxy = new QSortFilterProxyModel(this);
|
m_table_proxy = new QSortFilterProxyModel(this);
|
||||||
|
m_table_proxy->setSortCaseSensitivity(Qt::CaseInsensitive);
|
||||||
m_table_proxy->setSourceModel(m_model);
|
m_table_proxy->setSourceModel(m_model);
|
||||||
m_list_proxy = new ListProxyModel(this);
|
m_list_proxy = new ListProxyModel(this);
|
||||||
m_list_proxy->setSourceModel(m_model);
|
m_list_proxy->setSourceModel(m_model);
|
||||||
|
Reference in New Issue
Block a user