diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-04-18 19:58:06 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-04-18 19:58:06 +0000 |
| commit | 0a029cbad113a098fa17935e00d1d5e5a80efe88 (patch) | |
| tree | 8fcd10659e8f61f85d9060703e138b016aaf0794 /lib/python | |
| parent | 4595255653624ea92c89b46b5cc8f1522965cdab (diff) | |
| download | enigma2-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.py | 4 |
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) |
