mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #5385 from douglasjv/master
Fix for Emulator Issue #10267: Game list column sizes are being incorrectly calculated.
This commit is contained in:
commit
dae46fa3d2
1 changed files with 1 additions and 1 deletions
|
@ -1461,7 +1461,7 @@ void CGameListCtrl::AutomaticColumnWidth()
|
||||||
if (c.resizable)
|
if (c.resizable)
|
||||||
visible_columns.push_back(c.id);
|
visible_columns.push_back(c.id);
|
||||||
else
|
else
|
||||||
remaining_width -= c.default_width;
|
remaining_width -= GetColumnWidth(c.id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue