From 129435aa2331ed21d08baea536d5915d287fd472 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Wed, 1 Nov 2006 17:40:01 +0000 Subject: [PATCH] print a warning for now that the skin misses some elements --- lib/python/Components/GUIComponent.py | 6 ++++++ 1 file changed, 6 insertions(+) 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): -- 2.30.2