Skip to content

Commit

Permalink
Fix name of Priority channel group
Browse files Browse the repository at this point in the history
In one place the name of the Priority channel group was still Priority Channels.
This has now also been changed to Priority.

Refs #616
  • Loading branch information
kmdewaal committed Aug 3, 2022
1 parent fd2df57 commit ad9ab9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythfrontend/globalsettings.cpp
Expand Up @@ -4911,8 +4911,8 @@ void ChannelGroupsSetting::Load()
for (auto it = list.begin(); it < list.end(); ++it)
{
QString name =
(it->m_name == "Favorites" ) ? tr("Favorites" ) :
(it->m_name == "Priority Channels") ? tr("Priority Channels") : it->m_name;
(it->m_name == "Favorites") ? tr("Favorites") :
(it->m_name == "Priority" ) ? tr("Priority" ) : it->m_name;
addChild(new ChannelGroupSetting(name, it->m_grpId));
}

Expand Down

0 comments on commit ad9ab9e

Please sign in to comment.