diff options
| author | acid-burn <acid-burn@opendreambox.org> | 2011-02-08 11:23:09 +0100 |
|---|---|---|
| committer | acid-burn <acid-burn@opendreambox.org> | 2011-02-08 11:23:09 +0100 |
| commit | ba5fcab217438b995c1f903e0294b71d1411668b (patch) | |
| tree | 241cf5cd4001170753627442e24deb760ba1ed22 /lib/python/Plugins/Extensions/DVDPlayer | |
| parent | c72fb90523ab709569016548763d872ae53327e3 (diff) | |
| parent | 6a3f59e24b003c417fbf6b31f8a6d87817fec24c (diff) | |
| download | enigma2-ba5fcab217438b995c1f903e0294b71d1411668b.tar.gz enigma2-ba5fcab217438b995c1f903e0294b71d1411668b.zip | |
Merge remote branch 'origin/acid-burn/bug_670_plugin_restartoption' into experimental
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDPlayer')
| -rwxr-xr-x | lib/python/Plugins/Extensions/DVDPlayer/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py index 1f3de1ac..1cee0aac 100755 --- a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py @@ -775,5 +775,5 @@ def filescan(**kwargs): )] def Plugins(**kwargs): - return [PluginDescriptor(name = "DVDPlayer", description = "Play DVDs", where = PluginDescriptor.WHERE_MENU, fnc = menu), - PluginDescriptor(where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan)] + return [PluginDescriptor(name = "DVDPlayer", description = "Play DVDs", where = PluginDescriptor.WHERE_MENU, needsRestart = True, fnc = menu), + PluginDescriptor(where = PluginDescriptor.WHERE_FILESCAN, needsRestart = True, fnc = filescan)] |
