aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn/plugin.py
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2008-11-14 22:45:34 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2008-11-14 22:45:34 +0100
commitb07e1f84ffcce062b24c40f6cb10278a72d047cb (patch)
tree77bca596e7915e11366176ea51bca80d229b7a09 /lib/python/Plugins/Extensions/DVDBurn/plugin.py
parent103f4bf674f20b4431233ac066089e6de16ea480 (diff)
downloadenigma2-b07e1f84ffcce062b24c40f6cb10278a72d047cb.tar.gz
enigma2-b07e1f84ffcce062b24c40f6cb10278a72d047cb.zip
use new hotplug notifier in DVD Burner Toolbox to update upon media insert/eject. add plugin icon to extensions menu.
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/plugin.py')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/plugin.py b/lib/python/Plugins/Extensions/DVDBurn/plugin.py
index b658d804..29076cea 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/plugin.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/plugin.py
@@ -12,5 +12,5 @@ def main_add(session, service, **kwargs):
dvdburn.selectedSource(service)
def Plugins(**kwargs):
- return [PluginDescriptor(name="DVD Burn", description=_("Burn to DVD..."), where = PluginDescriptor.WHERE_MOVIELIST, fnc=main_add),
- PluginDescriptor(name="DVD Burn", description=_("Burn to DVD..."), where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main) ]
+ return [PluginDescriptor(name="DVD Burn", description=_("Burn to DVD..."), where = PluginDescriptor.WHERE_MOVIELIST, fnc=main_add, icon="dvdburn.png"),
+ PluginDescriptor(name="DVD Burn", description=_("Burn to DVD..."), where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main, icon="dvdburn.png") ]