Merge pull request #7183 from spycrab/qt_gamelist_fixes
Qt/GameList: Fix some resizing bugs
This commit is contained in:
commit
2e6d2a0342
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue