From d94805bab382608693164de766a0efd02b7ee212 Mon Sep 17 00:00:00 2001 From: Techjar Date: Thu, 28 Jun 2018 05:11:49 -0400 Subject: [PATCH] Qt/GameList: Explicitly set minimum section size --- Source/Core/DolphinQt2/GameList/GameList.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/DolphinQt2/GameList/GameList.cpp b/Source/Core/DolphinQt2/GameList/GameList.cpp index 18e999079cde..de27ecbc422b 100644 --- a/Source/Core/DolphinQt2/GameList/GameList.cpp +++ b/Source/Core/DolphinQt2/GameList/GameList.cpp @@ -115,6 +115,9 @@ void GameList::MakeListView() hor_header->setSectionResizeMode(GameListModel::COL_SIZE, QHeaderView::Fixed); hor_header->setSectionResizeMode(GameListModel::COL_FILE_NAME, QHeaderView::Interactive); + // There's some odd platform-specific behavior with default minimum section size + hor_header->setMinimumSectionSize(38); + // Cells have 3 pixels of padding, so the width of these needs to be image width + 6. Banners are // 96 pixels wide, platform and country icons are 32 pixels wide. m_list->setColumnWidth(GameListModel::COL_BANNER, 102);