diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-04-15 21:07:57 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-04-15 21:07:57 +0200 |
| commit | 937ea5edd21860ff826f84213cbe6ced09bd8c2d (patch) | |
| tree | 49c5904b19243e338542a5987cdc7cb3ef746aa7 /lib/python/Plugins | |
| parent | 3c4c841653efd2d173c5cda9f92217c606be108c (diff) | |
| download | enigma2-937ea5edd21860ff826f84213cbe6ced09bd8c2d.tar.gz enigma2-937ea5edd21860ff826f84213cbe6ced09bd8c2d.zip | |
DVDPlayer/plugin.py: fix startup at first boot (thx to
Mike Looijmans)
Diffstat (limited to 'lib/python/Plugins')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDPlayer/plugin.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py index ebcf4f81..e77b8940 100644 --- a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py @@ -14,7 +14,6 @@ from Components.ServiceEventTracker import ServiceEventTracker, InfoBarBase from Components.config import config from Tools.Directories import pathExists, fileExists from Components.Harddisk import harddiskmanager -from Plugins.SystemPlugins.Hotplug.plugin import hotplugNotifier import servicedvd # load c++ part of dvd player plugin @@ -346,6 +345,8 @@ class DVDPlayer(Screen, InfoBarBase, InfoBarNotifications, InfoBarSeek, InfoBarP }) self.onClose.append(self.__onClose) + + from Plugins.SystemPlugins.Hotplug.plugin import hotplugNotifier hotplugNotifier.append(self.hotplugCB) if dvd_device: @@ -627,6 +628,7 @@ class DVDPlayer(Screen, InfoBarBase, InfoBarNotifications, InfoBarSeek, InfoBarP def __onClose(self): self.restore_infobar_seek_config() self.session.nav.playService(self.oldService) + from Plugins.SystemPlugins.Hotplug.plugin import hotplugNotifier hotplugNotifier.remove(self.hotplugCB) def playLastCB(self, answer): # overwrite infobar cuesheet function |
