From: Felix Domke Date: Wed, 1 Nov 2006 17:40:01 +0000 (+0000) Subject: print a warning for now that the skin misses some elements X-Git-Tag: 2.6.0~2791 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/129435aa2331ed21d08baea536d5915d287fd472 print a warning for now that the skin misses some elements --- diff --git a/lib/python/Components/GUIComponent.py b/lib/python/Components/GUIComponent.py index 41461306..1f4c1e4f 100644 --- a/lib/python/Components/GUIComponent.py +++ b/lib/python/Components/GUIComponent.py @@ -8,6 +8,7 @@ class GUIComponent(object): def __init__(self): self.instance = None self.visible = 1 + self.skinAttributes = None def execBegin(self): pass @@ -28,6 +29,11 @@ class GUIComponent(object): def applySkin(self, desktop): if not self.visible: self.instance.hide() + + if self.skinAttributes is None: + print "warning, skin is missing some elements." + return + skin.applyAllAttributes(self.instance, desktop, self.skinAttributes) def move(self, x, y):