diff options
Diffstat (limited to 'lib/python/Components/GUIComponent.py')
| -rw-r--r-- | lib/python/Components/GUIComponent.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/GUIComponent.py b/lib/python/Components/GUIComponent.py index 401a004d..c900796d 100644 --- a/lib/python/Components/GUIComponent.py +++ b/lib/python/Components/GUIComponent.py @@ -31,10 +31,10 @@ class GUIComponent(object): self.instance.hide() if self.skinAttributes is None: - print "warning, skin is missing some elements." - return + return False skin.applyAllAttributes(self.instance, desktop, self.skinAttributes) + return True def move(self, x, y = None): # we assume, that x is already an ePoint |
