Skip to content

Commit

Permalink
Do not show menu and info key in SimpleChannelSelection screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Littlesat committed Jan 4, 2025
1 parent d93cbed commit fe6643b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/python/Screens/ChannelSelection.py
Original file line number Diff line number Diff line change
Expand Up @@ -1437,9 +1437,6 @@ def __init__(self, session):
self["key_yellow"] = Button(_("Provider"))
self["key_blue"] = Button(_("Favourites"))

self["key_menu"] = StaticText(_("MENU"))
self["key_info"] = StaticText(_("INFO"))

self["list"] = ServiceList(self)
self.servicelist = self["list"]

Expand Down Expand Up @@ -2062,6 +2059,9 @@ def __init__(self, session):
ChannelSelectionEPG.__init__(self)
SelectionEventInfo.__init__(self)

self["key_menu"] = StaticText(_("MENU"))
self["key_info"] = StaticText(_("INFO"))

self["actions"] = HelpableActionMap(self, ["OkCancelActions", "TvRadioActions"],
{
"cancel": (self.cancel, _("Cancel")),
Expand Down Expand Up @@ -2595,6 +2595,9 @@ def __init__(self, session, infobar):

self.info = session.instantiateDialog(RadioInfoBar) # our simple infobar

self["key_menu"] = StaticText(_("MENU"))
self["key_info"] = StaticText(_("INFO"))

self["actions"] = HelpableActionMap(self, ["OkCancelActions", "TvRadioActions"],
{
"keyTV": (self.cancel, _("Cancel")),
Expand Down

0 comments on commit fe6643b

Please sign in to comment.