From 26637ed262ed54d9259055a2f65dbc6199a15dd6 Mon Sep 17 00:00:00 2001 From: Rukai Date: Wed, 10 Feb 2016 22:47:57 +1100 Subject: [PATCH] Gamelist viewed as a table has a properly spaced row height --- Source/Core/DolphinQt2/GameList/GameList.cpp | 23 +++++++++++--------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/Source/Core/DolphinQt2/GameList/GameList.cpp b/Source/Core/DolphinQt2/GameList/GameList.cpp index 5c10100f78..861b0115a1 100644 --- a/Source/Core/DolphinQt2/GameList/GameList.cpp +++ b/Source/Core/DolphinQt2/GameList/GameList.cpp @@ -57,16 +57,19 @@ void GameList::MakeTableView() m_table->setColumnHidden(GameListModel::COL_COUNTRY, false); m_table->setColumnHidden(GameListModel::COL_RATING, false); - QHeaderView* header = m_table->horizontalHeader(); - header->setSectionResizeMode(GameListModel::COL_PLATFORM, QHeaderView::Fixed); - header->setSectionResizeMode(GameListModel::COL_COUNTRY, QHeaderView::Fixed); - header->setSectionResizeMode(GameListModel::COL_ID, QHeaderView::ResizeToContents); - header->setSectionResizeMode(GameListModel::COL_BANNER, QHeaderView::ResizeToContents); - header->setSectionResizeMode(GameListModel::COL_TITLE, QHeaderView::Stretch); - header->setSectionResizeMode(GameListModel::COL_MAKER, QHeaderView::Stretch); - header->setSectionResizeMode(GameListModel::COL_SIZE, QHeaderView::ResizeToContents); - header->setSectionResizeMode(GameListModel::COL_DESCRIPTION, QHeaderView::Stretch); - header->setSectionResizeMode(GameListModel::COL_RATING, QHeaderView::Fixed); + QHeaderView* hor_header = m_table->horizontalHeader(); + hor_header->setSectionResizeMode(GameListModel::COL_PLATFORM, QHeaderView::Fixed); + hor_header->setSectionResizeMode(GameListModel::COL_COUNTRY, QHeaderView::Fixed); + hor_header->setSectionResizeMode(GameListModel::COL_ID, QHeaderView::ResizeToContents); + hor_header->setSectionResizeMode(GameListModel::COL_BANNER, QHeaderView::ResizeToContents); + hor_header->setSectionResizeMode(GameListModel::COL_TITLE, QHeaderView::Stretch); + hor_header->setSectionResizeMode(GameListModel::COL_MAKER, QHeaderView::Stretch); + hor_header->setSectionResizeMode(GameListModel::COL_SIZE, QHeaderView::ResizeToContents); + hor_header->setSectionResizeMode(GameListModel::COL_DESCRIPTION, QHeaderView::Stretch); + hor_header->setSectionResizeMode(GameListModel::COL_RATING, QHeaderView::Fixed); + + QHeaderView* ver_header = m_table->verticalHeader(); + ver_header->setSectionResizeMode(QHeaderView::ResizeToContents); } void GameList::MakeEmptyView()