Possibly in epg infobar I should check for the info hotkey.... If it is defind use the hotkey... Otherwise use the current fallback.
I ask it to do.
+
Open favourites list...
--- a/Hotkey.py
+++ b/Hotkey.py
@@ -107,6 +107,7 @@
hotkeyFunctions.append((_("Switch channel up"), "Infobar/switchChannelUp", "InfoBar"))
hotkeyFunctions.append((_("Switch channel down"), "Infobar/switchChannelDown", "InfoBar"))
hotkeyFunctions.append((_("Open service list"), "Infobar/openServiceList", "InfoBar"))
+ hotkeyFunctions.append((_("Open favourites list"), "Infobar/openFavouritesList", "InfoBar"))
hotkeyFunctions.append((_("History back"), "Infobar/historyBack", "InfoBar"))
hotkeyFunctions.append((_("History next"), "Infobar/historyNext", "InfoBar"))
hotkeyFunctions.append((_("Show eventinfo plugins"), "Infobar/showEventInfoPlugins", "EPG"))
--- a/InfoBarGenerics.py
+++ b/InfoBarGenerics.py
@@ -730,6 +730,10 @@
def openServiceList(self):
self.session.execDialog(self.servicelist)
+ def openFavouritesList(self):
+ self.servicelist.showFavourites()
+ self.session.execDialog(self.servicelist)
+
class InfoBarMenu:
""" Handles a menu action, to open the (main) menu """
def __init__(self):
Edited by Dima73, 11 October 2014 - 11:19.