diff --git a/lib/python/Screens/Hotkey.py b/lib/python/Screens/Hotkey.py index e523331ade..31df9e0041 100644 --- a/lib/python/Screens/Hotkey.py +++ b/lib/python/Screens/Hotkey.py @@ -15,7 +15,7 @@ from Components.Label import Label import os -updateversion = "27.09.2017" +updateversion = "04.10.2017" def getHotkeys(): return [(_("OK long"), "okbutton_long", "Infobar/openInfoBarEPG"), @@ -228,8 +228,10 @@ def getHotkeyFunctions(): hotkeyFunctions.append((_("Toggle HDMI-In Picture In Picture"), "Infobar/HDMIInPiP", "InfoBar")) if SystemInfo["LcdLiveTV"]: hotkeyFunctions.append((_("Toggle LCD LiveTV"), "Infobar/ToggleLCDLiveTV", "InfoBar")) - if SystemInfo["HaveMultiBoot"]: + if SystemInfo["HaveMultiBootHD"]: hotkeyFunctions.append((_("MultiBoot Selector"), "Module/Screens.MultiBootStartup/MultiBootStartup", "InfoBar")) + if SystemInfo["HaveMultiBootGB"]: + hotkeyFunctions.append((_("MultiBoot Selector"), "Module/Screens.MultiBootStartupGB/MultiBootStartup", "InfoBar")) hotkeyFunctions.append((_("HotKey Setup"), "Module/Screens.Hotkey/HotkeySetup", "Setup")) hotkeyFunctions.append((_("Software Update"), "Module/Screens.SoftwareUpdate/UpdatePlugin", "Setup")) hotkeyFunctions.append((_("CI (Common Interface) Setup"), "Module/Screens.Ci/CiSelection", "Setup"))