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
(cherry picked from commit bf6ed42)
  • Loading branch information
stuartm committed Feb 10, 2012
1 parent a7acb7b commit ab0cc30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/programs/mythfrontend/globalsettings.cpp
Expand Up @@ -1872,7 +1872,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 ab0cc30

Please sign in to comment.