aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-03-26 22:11:54 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-03-26 22:11:54 +0000
commit9e7ce0c17ba62c78b9396a8dfe8e0e3edbc77157 (patch)
tree23909839e62afd5202fe7e02531c38cc5cca55b7 /lib/python
parent66f8c8df75cc229671bd86a2ebbb2b0924bc6d3e (diff)
downloadenigma2-9e7ce0c17ba62c78b9396a8dfe8e0e3edbc77157.tar.gz
enigma2-9e7ce0c17ba62c78b9396a8dfe8e0e3edbc77157.zip
another useless fix
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ChannelSelection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index 60742c47..26ca4361 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -14,7 +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 PixmapConditional
+from Components.Pixmap import Pixmap
from Screens.InputBox import InputBox, PinInput
from Screens.MessageBox import MessageBox
from Screens.ServiceInfo import ServiceInfo
@@ -1268,7 +1268,7 @@ class RadioInfoBar(Screen, InfoBarEvent, InfoBarServiceName):
InfoBarServiceName.__init__(self)
self["CurrentTime"] = Clock()
self["RdsDecoder"] = RdsDecoder(self.session.nav)
- self["BlinkingPoint"] = PixmapConditional(False)
+ self["BlinkingPoint"] = Pixmap()
self["BlinkingPoint"].hide()
class ChannelSelectionRadio(ChannelSelectionBase, ChannelSelectionEdit, ChannelSelectionEPG):