aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
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 20:59:55 +0100
commit2a8f4bb347c3cf4075bfa45cae2220d4562f74ee (patch)
treeed4180d7e8968b2dbda7c5f7b3b68694b758253e /lib/python/Components
parent05471750e4cea10659af169df1fa0e538e0bafdf (diff)
downloadenigma2-2a8f4bb347c3cf4075bfa45cae2220d4562f74ee.tar.gz
enigma2-2a8f4bb347c3cf4075bfa45cae2220d4562f74ee.zip
make channel selection service description color configurable
this fixes bug #487 (patch by Dr.Best)
Diffstat (limited to 'lib/python/Components')
-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: