Merge pull request #7183 from spycrab/qt_gamelist_fixes

Qt/GameList: Fix some resizing bugs
This commit is contained in:
spycrab 2018-06-29 10:52:45 +02:00 committed by GitHub
commit 2e6d2a0342
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -574,7 +574,8 @@ void GameList::OnSectionResized(int index, int, int)
for (int i = vis_index + 1; i < col_count; i++)
{
if (hor_header->sectionResizeMode(i) != QHeaderView::Interactive)
const int logical_index = hor_header->logicalIndex(i);
if (hor_header->sectionResizeMode(logical_index) != QHeaderView::Interactive)
continue;
last = false;
@ -585,10 +586,11 @@ void GameList::OnSectionResized(int index, int, int)
{
for (int i = 0; i < vis_index; i++)
{
if (hor_header->sectionResizeMode(i) != QHeaderView::Interactive)
const int logical_index = hor_header->logicalIndex(i);
if (hor_header->sectionResizeMode(logical_index) != QHeaderView::Interactive)
continue;
hor_header->setSectionResizeMode(hor_header->logicalIndex(i), QHeaderView::Fixed);
hor_header->setSectionResizeMode(logical_index, QHeaderView::Fixed);
sections.push_back(i);
}