aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-04-24 13:37:16 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-04-24 13:37:16 +0000
commitff514b2103828e7f4aa55ccb7833f5e2626d43c6 (patch)
tree11ec4923a705673d34c1f8e6f6b6003a7096a7d6 /lib/python/Plugins/Extensions
parentb356016054ad071ce47cdc9028ea305019f270f4 (diff)
downloadenigma2-ff514b2103828e7f4aa55ccb7833f5e2626d43c6.tar.gz
enigma2-ff514b2103828e7f4aa55ccb7833f5e2626d43c6.zip
fix for skin changes
Diffstat (limited to 'lib/python/Plugins/Extensions')
-rw-r--r--lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py4
-rw-r--r--lib/python/Plugins/Extensions/MediaPlayer/plugin.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py
index 367b27f0..18247bbb 100644
--- a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py
+++ b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py
@@ -52,7 +52,7 @@ class EPGList(HTMLComponent, GUIComponent):
self.foreColorService = None
self.backColorService = None
- def applySkin(self, desktop):
+ def applySkin(self, desktop, screen):
if self.skinAttributes is not None:
attribs = [ ]
for (attrib, value) in self.skinAttributes:
@@ -73,7 +73,7 @@ class EPGList(HTMLComponent, GUIComponent):
else:
attribs.append((attrib,value))
self.skinAttributes = attribs
- return GUIComponent.applySkin(self, desktop)
+ return GUIComponent.applySkin(self, desktop, screen)
def isSelectable(self, service, sname, event_list):
return (event_list and len(event_list) and True) or False
diff --git a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
index 93765628..146cbf7a 100644
--- a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
+++ b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py
@@ -31,7 +31,7 @@ class MyPlayList(PlayList):
self.oldCurrPlaying = -1
class MediaPixmap(Pixmap):
- def applySkin(self, desktop):
+ def applySkin(self, desktop, screen):
self.default_pixmap = None
if self.skinAttributes is not None:
for (attrib, value) in self.skinAttributes:
@@ -40,7 +40,7 @@ class MediaPixmap(Pixmap):
break
if self.default_pixmap is None:
self.default_pixmap = resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/no_coverArt.png")
- return Pixmap.applySkin(self, desktop)
+ return Pixmap.applySkin(self, desktop, screen)
class MediaPlayer(Screen, InfoBarBase, InfoBarSeek, InfoBarAudioSelection, InfoBarCueSheetSupport, InfoBarNotifications, HelpableScreen):
ALLOW_SUSPEND = True