diff --git a/lib/python/Components/EpgConfig.py b/lib/python/Components/EpgConfig.py index 0e7ec56895..2e559200fb 100644 --- a/lib/python/Components/EpgConfig.py +++ b/lib/python/Components/EpgConfig.py @@ -60,7 +60,7 @@ def InitEPGConfig(): config.epgselection.infobar.btn_greenlong = ConfigSelection(choices=epgActions, default="openTimerList") config.epgselection.infobar.btn_yellow = ConfigSelection(choices=epgActions, default="openEPGSearch") config.epgselection.infobar.btn_yellowlong = ConfigSelection(choices=epgActions, default="") - config.epgselection.infobar.btn_blue = ConfigSelection(choices=epgActions, default="addAutoTimer") + config.epgselection.infobar.btn_blue = ConfigSelection(choices=epgActions, default="addEditAutoTimer") config.epgselection.infobar.btn_bluelong = ConfigSelection(choices=epgActions, default="openAutoTimerList") config.epgselection.infobar.btn_rec = ConfigSelection(choices=recActions, default="addEditTimerMenu") config.epgselection.infobar.btn_reclong = ConfigSelection(choices=recActions, default="addEditZapTimerSilent") @@ -76,7 +76,7 @@ def InitEPGConfig(): config.epgselection.single.btn_greenlong = ConfigSelection(choices=epgActions, default="openTimerList") config.epgselection.single.btn_yellow = ConfigSelection(choices=epgActions, default="openEPGSearch") config.epgselection.single.btn_yellowlong = ConfigSelection(choices=epgActions, default="") - config.epgselection.single.btn_blue = ConfigSelection(choices=epgActions, default="addAutoTimer") + config.epgselection.single.btn_blue = ConfigSelection(choices=epgActions, default="addEditAutoTimer") config.epgselection.single.btn_bluelong = ConfigSelection(choices=epgActions, default="openAutoTimerList") config.epgselection.single.btn_ok = ConfigSelection(choices=okActions, default="zap") config.epgselection.single.btn_oklong = ConfigSelection(choices=okActions, default="zapExit") @@ -108,7 +108,7 @@ def InitEPGConfig(): config.epgselection.multi.btn_greenlong = ConfigSelection(choices=epgActions, default="openTimerList") config.epgselection.multi.btn_yellow = ConfigSelection(choices=epgActions, default="openEPGSearch") config.epgselection.multi.btn_yellowlong = ConfigSelection(choices=epgActions, default="") - config.epgselection.multi.btn_blue = ConfigSelection(choices=epgActions, default="addAutoTimer") + config.epgselection.multi.btn_blue = ConfigSelection(choices=epgActions, default="addEditAutoTimer") config.epgselection.multi.btn_bluelong = ConfigSelection(choices=epgActions, default="openAutoTimerList") config.epgselection.grid = ConfigSubsection() @@ -160,5 +160,5 @@ def InitEPGConfig(): config.epgselection.grid.btn_greenlong = ConfigSelection(choices=epgActions, default="openTimerList") config.epgselection.grid.btn_yellow = ConfigSelection(choices=epgActions, default="openEPGSearch") config.epgselection.grid.btn_yellowlong = ConfigSelection(choices=epgActions, default="") - config.epgselection.grid.btn_blue = ConfigSelection(choices=epgActions, default="addAutoTimer") + config.epgselection.grid.btn_blue = ConfigSelection(choices=epgActions, default="addEditAutoTimer") config.epgselection.grid.btn_bluelong = ConfigSelection(choices=epgActions, default="openAutoTimerList") diff --git a/lib/python/Screens/EpgSelectionBase.py b/lib/python/Screens/EpgSelectionBase.py index 62f9dd3ec8..2cc48a0ec3 100644 --- a/lib/python/Screens/EpgSelectionBase.py +++ b/lib/python/Screens/EpgSelectionBase.py @@ -871,7 +871,7 @@ def helpKeyAction(self, actionName): "greenlong": (self.openTimerList, _("Show timer list")), "yellow": (ignoreLongKeyPress(self.openEPGSearch), _("Search for similar events")), "yellowlong": (lambda _ : None, _("Search for similar events")), - "blue": (ignoreLongKeyPress(self.addAutoTimer), _("Add an autotimer for current event")), + "blue": (ignoreLongKeyPress(self.addEditAutoTimer), _("Add an autotimer for current event")), "bluelong": (self.openAutoTimerList, _("Show autotimer list")), "ok": (ignoreLongKeyPress(self.OK), _("Zap to channel/service")), "oklong": (self.OKLong, _("Zap to channel/service and close")),