From: Stefan Pluecken Date: Tue, 24 Jan 2006 19:02:25 +0000 (+0000) Subject: re-right align the timerentry times for repeated timers X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=64990dd2bb18e1c3cbd5de80bb0617f966a83f00;ds=sidebyside re-right align the timerentry times for repeated timers --- diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py index a9a79d1..df91201 100644 --- a/lib/python/Screens/TimerEntry.py +++ b/lib/python/Screens/TimerEntry.py @@ -165,12 +165,12 @@ class TimerEntry(Screen): if (config.timerentry.type.value == 0): # once self.list.append(getConfigListEntry(_("Start"), config.timerentry.startdate)) - self.list.append(getConfigListEntry("", config.timerentry.starttime)) + self.list.append(getConfigListEntry(" ", config.timerentry.starttime)) else: self.list.append(getConfigListEntry(_("StartTime"), config.timerentry.starttime)) if (config.timerentry.type.value == 0): # once self.list.append(getConfigListEntry(_("End"), config.timerentry.enddate)) - self.list.append(getConfigListEntry("", config.timerentry.endtime)) + self.list.append(getConfigListEntry(" ", config.timerentry.endtime)) else: self.list.append(getConfigListEntry(_("EndTime"), config.timerentry.endtime))