aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-04-11 19:23:52 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-04-11 19:23:52 +0000
commit41c1cbf33fec98ed50973390d0500fe5522d82d6 (patch)
tree636a1e1d8e1947336c6318acdd826062584ed0c9 /lib/python
parentfe407814f6b929a5cb2b396557f0ba0dd0c099d3 (diff)
downloadenigma2-41c1cbf33fec98ed50973390d0500fe5522d82d6.tar.gz
enigma2-41c1cbf33fec98ed50973390d0500fe5522d82d6.zip
don't display blue knob till pip works properly (PIP doesn't work properly for now! don't activate it! it will eat your box
and cat)
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 424be737..e296038b 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -1182,9 +1182,9 @@ class InfoBarAdditionalInfo:
self.onLayoutFinish.append(self["ButtonYellowText"].update)
self["ButtonBlue"] = PixmapConditional(withTimer = False)
- self["ButtonBlue"].setConnect(lambda: True)
+ self["ButtonBlue"].setConnect(lambda: False)
self["ButtonBlueText"] = LabelConditional(text = _("Extensions"), withTimer = False)
- self["ButtonBlueText"].setConnect(lambda: True)
+ self["ButtonBlueText"].setConnect(lambda: False)
self.onLayoutFinish.append(self["ButtonBlue"].update)
self.onLayoutFinish.append(self["ButtonBlueText"].update)