X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/47f334392faf39f274f5f74d9b86f1bfc2f29b51..0b3d548fcc6f9033c428b7c8dee84ac12ad8dee6:/lib/python/Screens/InfoBarGenerics.py diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index f6f50b6d..dd5aadec 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -3,7 +3,6 @@ from ChannelSelection import ChannelSelection, BouquetSelector from Components.ActionMap import ActionMap, HelpableActionMap from Components.ActionMap import NumberActionMap from Components.BlinkingPixmap import BlinkingPixmapConditional -from Components.Clock import Clock from Components.Harddisk import harddiskmanager from Components.Input import Input from Components.Label import * @@ -15,6 +14,7 @@ from Components.Sources.CurrentService import CurrentService from Components.Sources.EventInfo import EventInfo from Components.Sources.FrontendStatus import FrontendStatus from Components.Sources.Boolean import Boolean +from Components.Sources.Clock import Clock from Components.TimerList import TimerEntryComponent from Components.config import config, configElement, ConfigSubsection, configSequence, configElementBoolean, configSelection, configElement_nonSave, getConfigListEntry from Components.config import configfile, configsequencearg @@ -1543,14 +1543,18 @@ class InfoBarCueSheetSupport: class InfoBarSummary(Screen): skin = """ - - + + WithSeconds + + + Name + """ def __init__(self, session, parent): Screen.__init__(self, session) self["CurrentService"] = CurrentService(self.session.nav) - self["Clock"] = Clock() + self["CurrentTime"] = Clock() class InfoBarSummarySupport: def __init__(self):