Skip to content

Commit

Permalink
[hotkey] add devicemanager to setup
Browse files Browse the repository at this point in the history
  • Loading branch information
koivo committed Jan 2, 2016
1 parent 7bbe06f commit c69a13a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/python/Screens/Hotkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from Components.Label import Label
import os

updateversion = "26.12.2015"
updateversion = "02.01.2016"

def getHotkeys():
return [(_("OK long"), "okbutton_long", "Infobar/openInfoBarEPG"),
Expand Down Expand Up @@ -243,6 +243,7 @@ def getHotkeyFunctions():
hotkeyFunctions.append((_("User Interface"), "Setup/userinterface", "Setup"))
hotkeyFunctions.append((_("Recording Setup"), "Setup/recording", "Setup"))
hotkeyFunctions.append((_("Harddisk Setup"), "Setup/harddisk", "Setup"))
hotkeyFunctions.append((_("Device Manager"), "DeviceManager", "Setup"))
hotkeyFunctions.append((_("Subtitles Settings"), "Setup/subtitlesetup", "Setup"))
hotkeyFunctions.append((_("Language"), "Module/Screens.LanguageSelection/LanguageSelection", "Setup"))
hotkeyFunctions.append((_("Skin setup"), "Module/Screens.SkinSelector/SkinSelector", "Setup"))
Expand Down Expand Up @@ -650,3 +651,6 @@ def execHotkey(self, selected):
if os.path.isfile("/usr/lib/enigma2/python/Plugins/Extensions/Kodi/plugin.pyo"):
from Plugins.Extensions.Kodi.plugin import KodiMainScreen
self.session.open(KodiMainScreen)
elif selected[0] == "DeviceManager":
from Plugins.SystemPlugins.DeviceManager.HddSetup import *
self.session.open(HddSetup)

0 comments on commit c69a13a

Please sign in to comment.