From: Andreas Monzner Date: Mon, 26 Mar 2007 22:11:54 +0000 (+0000) Subject: another useless fix X-Git-Tag: 2.6.0~2333 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/9e7ce0c17ba62c78b9396a8dfe8e0e3edbc77157?ds=sidebyside another useless fix --- 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):