Skip to content

Commit

Permalink
Fix missing AutoTimer blue label
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCapewell committed Jul 8, 2020
1 parent d03ea5d commit 6badb54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions lib/python/Components/EpgConfig.py
Expand Up @@ -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")
Expand All @@ -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")
Expand Down Expand Up @@ -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()
Expand Down Expand Up @@ -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")
2 changes: 1 addition & 1 deletion lib/python/Screens/EpgSelectionBase.py
Expand Up @@ -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")),
Expand Down

0 comments on commit 6badb54

Please sign in to comment.