aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-10-07 10:35:19 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-10-07 10:35:19 +0000
commit567cf170322df2e897871787255c50bd522e6313 (patch)
tree4d14fddb2396f4ed15e60b3d3af588fe3292deed /lib/python/Plugins/Extensions
parentcbfffe567b8f10fcadea7619f80d954ad879cff9 (diff)
downloadenigma2-567cf170322df2e897871787255c50bd522e6313.tar.gz
enigma2-567cf170322df2e897871787255c50bd522e6313.zip
Rename WHERE_SETUP to WHERE_MENU and patch all local plugins to follow this (patch by Moritz Venn, 004_enigma2_plugin_rename_where_setup_to_where_menu.patch)
Diffstat (limited to 'lib/python/Plugins/Extensions')
-rw-r--r--lib/python/Plugins/Extensions/MediaPlayer/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
index 0de820c8..3207c09c 100644
--- a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
+++ b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
@@ -750,6 +750,6 @@ def filescan(**kwargs):
from Plugins.Plugin import PluginDescriptor
def Plugins(**kwargs):
return [
- PluginDescriptor(name = "MediaPlayer", description = "Play back media files", where = PluginDescriptor.WHERE_SETUP, fnc = menu),
+ PluginDescriptor(name = "MediaPlayer", description = "Play back media files", where = PluginDescriptor.WHERE_MENU, fnc = menu),
PluginDescriptor(name = "MediaPlayer", where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan)
]