aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-06-15 17:38:33 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-06-15 17:38:33 +0000
commit36dc37e5d0c9ef8fc5f923ad38ee6cc98f316556 (patch)
tree51c8335f2a9548c67cc0b427944db3a9bbc0d1a3 /lib/python/Components
parent8e83c20bab185fd0e7bd527cb92ebe733db24d9c (diff)
downloadenigma2-36dc37e5d0c9ef8fc5f923ad38ee6cc98f316556.tar.gz
enigma2-36dc37e5d0c9ef8fc5f923ad38ee6cc98f316556.zip
support for renderer
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/GUISkin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/GUISkin.py b/lib/python/Components/GUISkin.py
index 3aa9c851..406cd097 100644
--- a/lib/python/Components/GUISkin.py
+++ b/lib/python/Components/GUISkin.py
@@ -9,7 +9,7 @@ class GUISkin:
self.summaries = [ ]
def createGUIScreen(self, parent, desktop):
- for (name, val) in self.items():
+ for val in self.values() + self.renderer:
if isinstance(val, GUIComponent):
val.GUIcreate(parent)
val.applySkin(desktop)