diff options
Diffstat (limited to 'changrp.c')
-rw-r--r-- | changrp.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -305,6 +305,9 @@ void cMenuChannelGroupItem::Set(void) cMenuChannelGroups::cMenuChannelGroups(char** GroupName) :cOsdMenu(tr("Channel groups"),20) { +#if VDRVERSNUM >= 10728 + SetMenuCategory(mcSetup); +#endif groupSel = -1; groupName = GroupName; if (groupName && *groupName) @@ -407,6 +410,9 @@ eOSState cMenuChannelGroups::ProcessKey(eKeys Key) cMenuEditChannelGroup::cMenuEditChannelGroup(cChannelGroup *Group, bool New) :cOsdMenu(tr("Edit channel group"),30) { +#if VDRVERSNUM >= 10728 + SetMenuCategory(mcSetup); +#endif group = Group; channelSel = group->CreateChannelSel(); strcpy(name, group->name); |