Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #518 from glennricster/master
Ensure (Get|Set)ColumnWidth is not called on a non existant column.
  • Loading branch information
neobrain committed Jun 20, 2014
2 parents ddce7e9 + bb6d360 commit 07da9cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GameListCtrl.cpp
Expand Up @@ -1285,7 +1285,7 @@ void CGameListCtrl::AutomaticColumnWidth()
{
SetColumnWidth(0, rc.GetWidth());
}
else
else if (GetColumnCount() > 0)
{

int resizable = rc.GetWidth() - (
Expand Down

0 comments on commit 07da9cb

Please sign in to comment.