summaryrefslogtreecommitdiff
path: root/changrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'changrp.c')
-rw-r--r--changrp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/changrp.c b/changrp.c
index 81a253f..45be2c3 100644
--- a/changrp.c
+++ b/changrp.c
@@ -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);