aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/GUISkin.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-09-14 11:27:41 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-09-14 11:27:41 +0000
commita029953596adaed49a5b0346acd5a867eff91a57 (patch)
tree50358cb8d4d78581636217469c8d0303bf967c67 /lib/python/Components/GUISkin.py
parent3636b0f783ebb9b5f82a6c23d4624a78985d0ac3 (diff)
downloadenigma2-a029953596adaed49a5b0346acd5a867eff91a57.tar.gz
enigma2-a029953596adaed49a5b0346acd5a867eff91a57.zip
add the name of missing skin element to debug output
Diffstat (limited to 'lib/python/Components/GUISkin.py')
-rw-r--r--lib/python/Components/GUISkin.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/python/Components/GUISkin.py b/lib/python/Components/GUISkin.py
index 0fb94214..39499c77 100644
--- a/lib/python/Components/GUISkin.py
+++ b/lib/python/Components/GUISkin.py
@@ -10,10 +10,18 @@ class GUISkin:
self.summaries = CList()
def createGUIScreen(self, parent, desktop):
- for val in self.values() + self.renderer:
+ for val in self.renderer:
if isinstance(val, GUIComponent):
val.GUIcreate(parent)
- val.applySkin(desktop)
+ if not val.applySkin(desktop):
+ print "warning, skin is missing renderer", val, "in", self
+
+ for key in self:
+ val = self[key]
+ if isinstance(val, GUIComponent):
+ val.GUIcreate(parent)
+ if not val.applySkin(desktop):
+ print "warning, skin is missing element", key, "in", self
for w in self.additionalWidgets:
w.instance = w.widget(parent)