diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-11 01:15:52 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-11 01:15:52 +0000 |
| commit | 36bc1fa5226f5c1942f68b0afb485441e437be8a (patch) | |
| tree | 9c1133cf5f502214e7bb13e8a436d0548bcf6b32 /lib/python | |
| parent | 2d23c069f94fc90593c211a359e44d82919701c3 (diff) | |
| download | enigma2-36bc1fa5226f5c1942f68b0afb485441e437be8a.tar.gz enigma2-36bc1fa5226f5c1942f68b0afb485441e437be8a.zip | |
fix showing timer symbol in epglist..
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/EpgList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/EpgList.py b/lib/python/Components/EpgList.py index d2d9f1ce..f2003f56 100644 --- a/lib/python/Components/EpgList.py +++ b/lib/python/Components/EpgList.py @@ -142,7 +142,7 @@ class EPGList(HTMLComponent, GUIComponent): self.descr_rect = Rect(xpos, 0, width, height) def buildSingleEntry(self, eventId, beginTime, duration, EventName): - rec=(self.timer.isInTimer(eventid=eventId, begin=beginTime, duration=duration, service=self.service) > 0) + rec=(self.timer.isInTimer(eventid=eventId, begin=beginTime, duration=duration, service=self.service) > ((duration/10)*8)) r1=self.datetime_rect r2=self.descr_rect res = [ None ] # no private data needed |
