diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-09-14 11:27:41 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-09-14 11:27:41 +0000 |
| commit | a029953596adaed49a5b0346acd5a867eff91a57 (patch) | |
| tree | 50358cb8d4d78581636217469c8d0303bf967c67 /lib/python/Components/GUIComponent.py | |
| parent | 3636b0f783ebb9b5f82a6c23d4624a78985d0ac3 (diff) | |
| download | enigma2-a029953596adaed49a5b0346acd5a867eff91a57.tar.gz enigma2-a029953596adaed49a5b0346acd5a867eff91a57.zip | |
add the name of missing skin element to debug output
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 |
