aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-04-18 19:58:06 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-04-18 19:58:06 +0000
commit0a029cbad113a098fa17935e00d1d5e5a80efe88 (patch)
tree8fcd10659e8f61f85d9060703e138b016aaf0794 /lib/python
parent4595255653624ea92c89b46b5cc8f1522965cdab (diff)
downloadenigma2-0a029cbad113a098fa17935e00d1d5e5a80efe88.tar.gz
enigma2-0a029cbad113a098fa17935e00d1d5e5a80efe88.zip
activate blue button in info bar for extensions
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 7e9aaadf..4c08583e 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -1183,9 +1183,9 @@ class InfoBarAdditionalInfo:
self.onLayoutFinish.append(self["ButtonYellowText"].update)
self["ButtonBlue"] = PixmapConditional(withTimer = False)
- self["ButtonBlue"].setConnect(lambda: False)
+ self["ButtonBlue"].setConnect(lambda: True)
self["ButtonBlueText"] = LabelConditional(text = _("Extensions"), withTimer = False)
- self["ButtonBlueText"].setConnect(lambda: False)
+ self["ButtonBlueText"].setConnect(lambda: True)
self.onLayoutFinish.append(self["ButtonBlue"].update)
self.onLayoutFinish.append(self["ButtonBlueText"].update)