Merge pull request #5489 from ligfx/qtremovegamelistleftheader

DolphinQt2: hide GameList vertical header (the one on the left)
This commit is contained in:
Leo Lam 2017-05-27 10:20:24 +02:00 committed by GitHub
commit 5368e254c1
1 changed files with 1 additions and 2 deletions

View File

@ -91,8 +91,7 @@ void GameList::MakeTableView()
hor_header->setSectionResizeMode(GameListModel::COL_DESCRIPTION, QHeaderView::Stretch);
hor_header->setSectionResizeMode(GameListModel::COL_RATING, QHeaderView::ResizeToContents);
QHeaderView* ver_header = m_table->verticalHeader();
ver_header->setSectionResizeMode(QHeaderView::ResizeToContents);
m_table->verticalHeader()->hide();
}
void GameList::MakeEmptyView()