diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-03-26 15:21:19 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-03-26 15:21:19 +0000 |
| commit | b9aeffa4fe90d348eb15b9a5c8f707e1f779bbca (patch) | |
| tree | 103d3c8eadbbac57303c1281561c2ecb1aa4eecc | |
| parent | 7e931247164eeb0e9044ce9e5350ff06c0bea30c (diff) | |
| download | enigma2-b9aeffa4fe90d348eb15b9a5c8f707e1f779bbca.tar.gz enigma2-b9aeffa4fe90d348eb15b9a5c8f707e1f779bbca.zip | |
re-add (unused) blinking point in radio infobar to make e2 happy...
| -rw-r--r-- | data/skin_default.xml | 1 | ||||
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/data/skin_default.xml b/data/skin_default.xml index 65e810d9..c89c3503 100644 --- a/data/skin_default.xml +++ b/data/skin_default.xml @@ -254,6 +254,7 @@ <widget source="CurrentService" render="Label" position="0,0" size="390,26" font="Regular;22" backgroundColor="dark" > <convert type="ServiceName">Name</convert> </widget> + <widget name="BlinkingPoint" pixmap="record.png" position="400,0" zPosition="2" size="58,25" /> <widget source="CurrentTime" render="Label" position="465,0" size="95,28" font="Regular;22" backgroundColor="dark" > <convert type="ClockToText">WithSeconds</convert> </widget> diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 7f9f797e..1ccddf75 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -14,6 +14,7 @@ from Components.Sources.Clock import Clock from Components.Sources.RdsDecoder import RdsDecoder from Components.Input import Input from Components.ParentalControl import parentalControl +from Components.Pixmap import BlinkingPixmapConditional from Screens.InputBox import InputBox, PinInput from Screens.MessageBox import MessageBox from Screens.ServiceInfo import ServiceInfo @@ -1267,6 +1268,8 @@ class RadioInfoBar(Screen, InfoBarEvent, InfoBarServiceName): InfoBarServiceName.__init__(self) self["CurrentTime"] = Clock() self["RdsDecoder"] = RdsDecoder(self.session.nav) + self["BlinkingPoint"] = BlinkingPixmapConditional() + self["BlinkingPoint"].hide() class ChannelSelectionRadio(ChannelSelectionBase, ChannelSelectionEdit, ChannelSelectionEPG): ALLOW_SUSPEND = True |
