git.cweiske.de
/
enigma2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed45a5f
)
print a warning for now that the skin misses some elements
author
Felix Domke
<
[email protected]
>
Wed, 1 Nov 2006 17:40:01 +0000
(17:40 +0000)
committer
Felix Domke
<
[email protected]
>
Wed, 1 Nov 2006 17:40:01 +0000
(17:40 +0000)
lib/python/Components/GUIComponent.py
patch
|
blob
|
history
diff --git
a/lib/python/Components/GUIComponent.py
b/lib/python/Components/GUIComponent.py
index 414613066f9072c07d30ba1f74f5e8f644ae3b00..1f4c1e4f5fcf8da13454689c14113ddcb946e944 100644
(file)
--- 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):