DolphinQt: setTabKeyNavigation(false) on QTableWidget and QTableView.

This commit is contained in:
Jordan Woyak
2020-02-06 20:34:27 -06:00
parent a0d204253b
commit b9f34bc822
12 changed files with 15 additions and 0 deletions

View File

@ -102,6 +102,7 @@ void GameList::MakeListView()
m_list = new QTableView(this);
m_list->setModel(m_list_proxy);
m_list->setTabKeyNavigation(false);
m_list->setSelectionMode(QAbstractItemView::ExtendedSelection);
m_list->setSelectionBehavior(QAbstractItemView::SelectRows);
m_list->setAlternatingRowColors(true);