aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-03-24 20:59:55 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-03-24 21:00:24 +0100
commit0b41d21e11a9aa7f70f6e148490cc26a03d7d4d7 (patch)
treefe879f06301a2c5ba1c4d7bf3940235c5af8360a /lib/python
parentecb8af1618dc7f2b2be41ca2bd1667aa693d777a (diff)
downloadenigma2-0b41d21e11a9aa7f70f6e148490cc26a03d7d4d7.tar.gz
enigma2-0b41d21e11a9aa7f70f6e148490cc26a03d7d4d7.zip
make channel selection service description color configurable
this fixes bug #487 (patch by Dr.Best)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/ServiceList.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Components/ServiceList.py b/lib/python/Components/ServiceList.py
index 3452e27d..cd055a82 100644
--- a/lib/python/Components/ServiceList.py
+++ b/lib/python/Components/ServiceList.py
@@ -72,6 +72,10 @@ class ServiceList(HTMLComponent, GUIComponent):
self.l.setColor(eListboxServiceContent.serviceEventProgressbarBorderColor, parseColor(value))
elif attrib == "colorEventProgressbarBorderSelected":
self.l.setColor(eListboxServiceContent.serviceEventProgressbarBorderColorSelected, parseColor(value))
+ elif attrib == "colorServiceDescription":
+ self.l.setColor(eListboxServiceContent.serviceDescriptionColor, parseColor(value))
+ elif attrib == "colorServiceDescriptionSelected":
+ self.l.setColor(eListboxServiceContent.serviceDescriptionColorSelected, parseColor(value))
elif attrib == "picServiceEventProgressbar":
pic = LoadPixmap(resolveFilename(SCOPE_CURRENT_SKIN, value))
if pic: