diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-04-23 11:32:18 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-04-23 11:32:18 +0000 |
| commit | fe0534f76b59b814caca3648933c45d3add31889 (patch) | |
| tree | a05bb683ae8dfb6c73f48be5940590b9aa6e923d /lib/python/Components/Renderer/Picon.py | |
| parent | f80cd44acb9f06d348f3b0fb09036d7db7e83b66 (diff) | |
| download | enigma2-fe0534f76b59b814caca3648933c45d3add31889.tar.gz enigma2-fe0534f76b59b814caca3648933c45d3add31889.zip | |
prepare for skin updating and scaling
Diffstat (limited to 'lib/python/Components/Renderer/Picon.py')
| -rw-r--r-- | lib/python/Components/Renderer/Picon.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Renderer/Picon.py b/lib/python/Components/Renderer/Picon.py index ca934c8e..de19c9aa 100644 --- a/lib/python/Components/Renderer/Picon.py +++ b/lib/python/Components/Renderer/Picon.py @@ -16,7 +16,7 @@ class Picon(Renderer): self.nameCache = { } self.pngname = "" - def applySkin(self, desktop): + def applySkin(self, desktop, parent): attribs = [ ] for (attrib, value) in self.skinAttributes: if attrib == "path": @@ -24,7 +24,7 @@ class Picon(Renderer): else: attribs.append((attrib,value)) self.skinAttributes = attribs - return Renderer.applySkin(self, desktop) + return Renderer.applySkin(self, desktop, parent) GUI_WIDGET = ePixmap |
