diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-06-10 13:20:13 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-06-10 13:20:13 +0000 |
| commit | fb237c0e5a8af94012befd09fbe111a81327fb61 (patch) | |
| tree | 677e0dc56ac4e999a23c3f3da0123280aaf44dbf /lib/python | |
| parent | c98c3f3d1909a5a8ef6ac051da2998e68151378a (diff) | |
| download | enigma2-fb237c0e5a8af94012befd09fbe111a81327fb61.tar.gz enigma2-fb237c0e5a8af94012befd09fbe111a81327fb61.zip | |
small fix
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/Pixmap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Pixmap.py b/lib/python/Components/Pixmap.py index 02eeb870..3fd09394 100644 --- a/lib/python/Components/Pixmap.py +++ b/lib/python/Components/Pixmap.py @@ -94,8 +94,8 @@ class MultiPixmap(Pixmap): for (attrib, value) in self.skinAttributes: if attrib == "pixmaps": pixmaps = value.split(',') - for pixmap in pixmaps: - self.pixmaps.append(loadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, pixmap, path_prefix=skin_path_prefix), desktop) ) + for p in pixmaps: + self.pixmaps.append(loadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, p, path_prefix=skin_path_prefix), desktop) ) if not pixmap: pixmap = resolveFilename(SCOPE_SKIN_IMAGE, pixmaps[0], path_prefix=skin_path_prefix) elif attrib == "pixmap": |
