Skip to content

Commit

Permalink
Fix default selected value for the menu theme setting
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Feb 10, 2012
1 parent f769108 commit bf6ed42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/programs/mythfrontend/globalsettings.cpp
Expand Up @@ -1324,7 +1324,8 @@ static HostComboBox *MenuTheme()
QList<ThemeInfo>::iterator it;
for( it = themelist.begin(); it != themelist.end(); ++it )
{
gc->addSelection((*it).GetName(), (*it).GetDirectoryName());
gc->addSelection((*it).GetName(), (*it).GetDirectoryName(),
(*it).GetDirectoryName() == "defaultmenu");
}

return gc;
Expand Down

0 comments on commit bf6ed42

Please sign in to comment.