Skip to content

Commit

Permalink
UI|Client: Order of game subsets in the Games dialog
Browse files Browse the repository at this point in the history
The Saved Games subset should appear below available games, because
this view is shown when the user selects "Switch Game", so that
should be the first subset listed.
  • Loading branch information
skyjake committed Apr 9, 2014
1 parent f0b0333 commit c23a0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/client/src/ui/widgets/gameselectionwidget.cpp
Expand Up @@ -306,7 +306,7 @@ DENG_GUI_PIMPL(GameSelectionWidget)
}
else
{
order << saved << multi << available << incomplete;
order << multi << available << saved << incomplete;
}

updateSubsetVisibility();
Expand Down

0 comments on commit c23a0da

Please sign in to comment.