aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-03 15:23:41 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-03 15:23:41 +0100
commit2c3384af08412169cad78b45eae107effafce328 (patch)
treee956d88a64c72a51c601d00a976283e726416ee4 /lib/python/Plugins
parente9272c492c7a3c7fd8a1225a4baa6bee2a02eea8 (diff)
downloadenigma2-2c3384af08412169cad78b45eae107effafce328.tar.gz
enigma2-2c3384af08412169cad78b45eae107effafce328.zip
Plugins/Plugin.py, InfoBarGenerics.py: add WHERE_AUDIOMENU for plugins .. requested by Tode for the AudioSync Plugin
fixes bug #305
Diffstat (limited to 'lib/python/Plugins')
-rwxr-xr-xlib/python/Plugins/Plugin.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Plugins/Plugin.py b/lib/python/Plugins/Plugin.py
index d7fc6898..dc68ebf3 100755
--- a/lib/python/Plugins/Plugin.py
+++ b/lib/python/Plugins/Plugin.py
@@ -52,6 +52,8 @@ class PluginDescriptor:
# reason (True: Networkconfig read finished, False: Networkconfig reload initiated )
WHERE_NETWORKCONFIG_READ = 12
+ WHERE_AUDIOMENU = 13
+
def __init__(self, name = "Plugin", where = [ ], description = "", icon = None, fnc = None, wakeupfnc = None, internal = False):
self.name = name
self.internal = internal