diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-11-15 14:03:10 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-11-15 14:03:10 +0000 |
| commit | f8a699c051ced1751b190d68d7af84bee80184a2 (patch) | |
| tree | ab7776efc595a2f8034615a6e7484b5ae4eac332 /lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py | |
| parent | 1b43fdc34bdbfa9b2817eef8284131a0d4ba7fc3 (diff) | |
| download | enigma2-f8a699c051ced1751b190d68d7af84bee80184a2.tar.gz enigma2-f8a699c051ced1751b190d68d7af84bee80184a2.zip | |
fix type
Diffstat (limited to 'lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py')
| -rw-r--r-- | lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py index 49297032..3148879a 100644 --- a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py +++ b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py @@ -218,7 +218,7 @@ class EPGList(HTMLComponent, GUIComponent): xpos, ewidth = self.calcEntryPosAndWidthHelper(ev[2], ev[3], start, end, width) res.append(MultiContentEntryText(pos = (left+xpos, top), size = (ewidth, height), font = 1, flags = RT_HALIGN_CENTER | RT_VALIGN_CENTER | RT_WRAP, text = ev[1], color = foreColor, color_sel = foreColorSelected, backcolor = backColor, backcolor_sel = backColorSelected, border_width = 1, border_color = borderColor)) if rec and ewidth > 23: - res.append(MultiContentEntryPixmapAlphaTest(pos = (left+xpos+ewidth-22, top+height-22), size = (21, 21), png = self.clock_pixmap, backcolor = backColor, backcolor_selected = backColorSelected)) + res.append(MultiContentEntryPixmapAlphaTest(pos = (left+xpos+ewidth-22, top+height-22), size = (21, 21), png = self.clock_pixmap, backcolor = backColor, backcolor_sel = backColorSelected)) return res def selEntry(self, dir, visible=True): |
