diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-28 00:11:25 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-28 00:11:25 +0000 |
| commit | 99e66edd91b058d8b5869f900cab9b2f40cd37d5 (patch) | |
| tree | bf58f1069c2f5466b56b6b8546431f4385f13631 /lib/python | |
| parent | a8f3a47d541932f5d122623321f7ac5b758aa35a (diff) | |
| download | enigma2-99e66edd91b058d8b5869f900cab9b2f40cd37d5.tar.gz enigma2-99e66edd91b058d8b5869f900cab9b2f40cd37d5.zip | |
add ugly buttons with ugly text to the infobar
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index e101cd25..5666fc8e 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -6,7 +6,7 @@ from Components.config import configfile, configsequencearg from Components.config import config, configElement, ConfigSubsection, configSequence from ChannelSelection import ChannelSelection -from Components.Pixmap import PixmapConditional +from Components.Pixmap import Pixmap, PixmapConditional from Components.BlinkingPixmap import BlinkingPixmapConditional from Components.ServiceName import ServiceName from Components.EventInfo import EventInfo @@ -512,4 +512,10 @@ class InfoBarAdditionalInfo: self["FormatActive"] = PixmapConditional() # TODO: get the info from c++ somehow - self["FormatActive"].setConnect(lambda: False)
\ No newline at end of file + self["FormatActive"].setConnect(lambda: False) + + self["ButtonRed"] = Pixmap() + self["ButtonRedText"] = Label(_("Record")) + self["ButtonGreen"] = Pixmap() + self["ButtonYellow"] = Pixmap() + self["ButtonBlue"] = Pixmap()
\ No newline at end of file |
