aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-08-21 16:01:58 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-08-21 16:01:58 +0000
commit6bdfaadd65fe35ba568799b0e42c54e5a95e27ed (patch)
treeea1c18dfd05cf11b2af802295f96c245974c0b25 /lib/python/Screens
parentf60205d510d03ed461d34a4bcb872b25ddee6108 (diff)
downloadenigma2-6bdfaadd65fe35ba568799b0e42c54e5a95e27ed.tar.gz
enigma2-6bdfaadd65fe35ba568799b0e42c54e5a95e27ed.zip
some fixes on the subservices quickzapper
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/SubservicesQuickzap.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/python/Screens/SubservicesQuickzap.py b/lib/python/Screens/SubservicesQuickzap.py
index 14b7b3c1..5d3d9779 100644
--- a/lib/python/Screens/SubservicesQuickzap.py
+++ b/lib/python/Screens/SubservicesQuickzap.py
@@ -9,10 +9,8 @@ from InfoBarGenerics import InfoBarShowHide, InfoBarMenu, InfoBarServiceName, In
class SubservicesQuickzap(InfoBarShowHide, InfoBarMenu, InfoBarServiceName, InfoBarInstantRecord, InfoBarSeek, InfoBarTimeshift, InfoBarTimeshiftState, InfoBarExtensions, InfoBarSubtitleSupport, Screen):
def __init__(self, session, subservices):
Screen.__init__(self, session)
- for x in [InfoBarShowHide, InfoBarMenu, InfoBarServiceName, InfoBarInstantRecord, InfoBarSeek, InfoBarTimeshift, InfoBarTimeshiftState, InfoBarSubtitleSupport]:
+ for x in [InfoBarShowHide, InfoBarMenu, InfoBarServiceName, InfoBarInstantRecord, InfoBarSeek, InfoBarTimeshift, InfoBarTimeshiftState, InfoBarSubtitleSupport, InfoBarExtensions]:
x.__init__(self)
- InfoBarExtensions.__init__(self, useServicePath = False)
-
self.restoreService = self.session.nav.getCurrentlyPlayingServiceReference()