aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-06 19:35:47 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-06 19:35:47 +0000
commit60fb5b95387fb30902240b92deed145720fa867a (patch)
tree0267e18e78c041284e87ffccab6adeb4bdc5e929 /lib/python/Screens
parent8dfa670adff5299752bcb5a42aff4ae91179ee22 (diff)
downloadenigma2-60fb5b95387fb30902240b92deed145720fa867a.tar.gz
enigma2-60fb5b95387fb30902240b92deed145720fa867a.zip
show red record button only if hdd is present
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index dc597d22..85fab2c8 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -20,6 +20,7 @@ from Screens.Mute import Mute
from Screens.Dish import Dish
from Screens.Standby import Standby
from Screens.EventView import EventView
+from Components.Harddisk import harddiskmanager
from Tools import Notifications
@@ -546,12 +547,16 @@ class InfoBarAdditionalInfo:
# TODO: get the info from c++ somehow
self["FormatActive"].setConnect(lambda: False)
- self["ButtonRed"] = Pixmap()
- self["ButtonRedText"] = Label(_("Record"))
-
+ self["ButtonRed"] = PixmapConditional(withTimer = False)
+ self["ButtonRed"].setConnect(lambda: harddiskmanager.HDDCount() > 0)
+ self.onShown.append(self["ButtonRed"].update)
+ self["ButtonRedText"] = LabelConditional(text = _("Record"), withTimer = False)
+ self["ButtonRedText"].setConnect(lambda: harddiskmanager.HDDCount() > 0)
+ self.onShown.append(self["ButtonRedText"].update)
+
self["ButtonGreen"] = PixmapConditional()
self["ButtonGreen"].setConnect(lambda: self.session.nav.getCurrentService().subServices().getNumberOfSubservices() > 0)
- self["ButtonGreenText"] = LabelConditional(text = _("Subservices"), withTimer = True)
+ self["ButtonGreenText"] = LabelConditional(text = _("Subservices"))
self["ButtonGreenText"].setConnect(lambda: self.session.nav.getCurrentService().subServices().getNumberOfSubservices() > 0)
self["ButtonYellow"] = PixmapConditional()