X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/29f1104e0e69589c5d78e3bdf4811fa6362fb4aa..fb412ff32c7938649c72d55eed3f5c8ccb5e0a99:/lib/python/Screens/ChannelSelection.py?ds=sidebyside diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index bbd4fd3f..b715ccc4 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -128,7 +128,7 @@ class ChannelContextMenu(Screen): def bouquetInputCallback(self, bouquet): if bouquet is not None: - self.csel.addBouquet(bouquet, True) + self.csel.addBouquet(bouquet, None, True) def addServiceToBouquetSelected(self): bouquets = self.csel.getBouquetList() @@ -441,7 +441,7 @@ class ChannelSelectionBase(Screen): Screen.__init__(self, session) # this makes it much simple to implement a selectable radio or tv mode :) - self.service_types_tv = '1:7:1:0:0:0:0:0:0:0:(type == 1) || (type == 17) || (type == 195)' + self.service_types_tv = '1:7:1:0:0:0:0:0:0:0:(type == 1) || (type == 17) || (type == 195) || (type == 25)' self.service_types_radio = '1:7:2:0:0:0:0:0:0:0:(type == 2)' self["key_red"] = Button(_("All"))