Skip to content

Commit

Permalink
UI|Home: Consider game “unplayable” if its default packages are missing
Browse files Browse the repository at this point in the history
The user's additional packages selected in the profile shouldn't have
an effect on visibility.
  • Loading branch information
skyjake committed Mar 6, 2017
1 parent cebf626 commit afe39e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/apps/client/src/ui/home/gamecolumnwidget.cpp
Expand Up @@ -451,7 +451,7 @@ DENG_GUI_PIMPL(GameColumnWidget)

if (!Config::get().getb("home.showUnplayableGames"))
{
drawer.show(item.as<ProfileItem>().game().isPlayable());
drawer.show(item.as<ProfileItem>().game().isPlayableWithDefaultPackages());
}
else
{
Expand Down

0 comments on commit afe39e7

Please sign in to comment.