X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/df7d9f3578c68b22c95ab9daa23bd0fa168f6d11..d26a119a33db3ad39b4930712cef2b15cbaf0f8c:/lib/python/Screens/EpgSelection.py diff --git a/lib/python/Screens/EpgSelection.py b/lib/python/Screens/EpgSelection.py index 378e0d89..04f858b9 100644 --- a/lib/python/Screens/EpgSelection.py +++ b/lib/python/Screens/EpgSelection.py @@ -46,11 +46,11 @@ class EPGSelection(Screen): self.zapFunc = zapFunc self["key_green"] = Button(_("Add timer")) - self["list"] = EPGList(self.type, self.onSelectionChanged) + self["list"] = EPGList(type = self.type, selChangedCB = self.onSelectionChanged, timer = self.session.nav.RecordTimer) class ChannelActionMap(ActionMap): def action(self, contexts, action): - ActionMap.action(self, contexts, action) + return ActionMap.action(self, contexts, action) self["actions"] = ChannelActionMap(["EPGSelectActions", "OkCancelActions"], { @@ -67,7 +67,7 @@ class EPGSelection(Screen): self.onLayoutFinish.append(self.onCreate) def closeScreen(self): - self.close(self.closeRecursive or self.type == EPG_TYPE_SINGLE) + self.close(self.closeRecursive) def infoKeyPressed(self): if self.type == EPG_TYPE_MULTI: