X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b4f7ad496e6740045e5ed38a21d39d06a9fffb98..a029953596adaed49a5b0346acd5a867eff91a57:/lib/python/Components/GUISkin.py diff --git a/lib/python/Components/GUISkin.py b/lib/python/Components/GUISkin.py index fc8f38cb..39499c77 100644 --- a/lib/python/Components/GUISkin.py +++ b/lib/python/Components/GUISkin.py @@ -1,4 +1,4 @@ -from GUIComponent import * +from GUIComponent import GUIComponent from skin import applyAllAttributes from Tools.CList import CList @@ -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)