Merge pull request from douglasjv/master

Fix for Emulator Issue : Game list column sizes are being incorrectly calculated.
This commit is contained in:
Leo Lam 2017-05-13 00:41:16 +02:00 committed by GitHub
commit dae46fa3d2
1 changed files with 1 additions and 1 deletions
Source/Core/DolphinWX

View File

@ -1461,7 +1461,7 @@ void CGameListCtrl::AutomaticColumnWidth()
if (c.resizable)
visible_columns.push_back(c.id);
else
remaining_width -= c.default_width;
remaining_width -= GetColumnWidth(c.id);
}
}