aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/GraphMultiEPG
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-09-25 14:03:46 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-09-25 14:03:46 +0000
commitf69890847fc8e8f8031e564b06109582ad49da87 (patch)
tree36f11dad2f50fa557480760fce0bf6b5c78e5319 /lib/python/Plugins/Extensions/GraphMultiEPG
parentc68ba62edaf957054397272becae9cbbf7f5b0c9 (diff)
downloadenigma2-f69890847fc8e8f8031e564b06109582ad49da87.tar.gz
enigma2-f69890847fc8e8f8031e564b06109582ad49da87.zip
fix partial clipping for eListboxPythonMultiContent
Diffstat (limited to 'lib/python/Plugins/Extensions/GraphMultiEPG')
-rw-r--r--lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py2
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 e1481276..648d4f11 100644
--- a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py
+++ b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py
@@ -159,7 +159,7 @@ class EPGList(HTMLComponent, GUIComponent):
xpos += w;
w = width/10*8;
self.event_rect = Rect(xpos, 0, w, height)
- self.l.setSelectionClip(eRect(xpos, 0, w, height), False)
+ self.l.setSelectionClip(eRect(0,0,0,0), False)
def calcEntryPosAndWidthHelper(self, stime, duration, start, end, width):
xpos = (stime - start) * width / (end - start)