aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/GraphMultiEPG
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-08-04 10:49:26 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-08-04 10:49:26 +0000
commit6e70c2c659ca7a037e55a9a332423ed03e4f312b (patch)
treeabb4177f4bd39230d256ac2b02d0ff63dddfb4fc /lib/python/Plugins/Extensions/GraphMultiEPG
parenta9fc8426e77d7e07cbbfdc4fc5a9aec211134d7c (diff)
downloadenigma2-6e70c2c659ca7a037e55a9a332423ed03e4f312b.tar.gz
enigma2-6e70c2c659ca7a037e55a9a332423ed03e4f312b.zip
redraw timelines when time is selected via menu button
Diffstat (limited to 'lib/python/Plugins/Extensions/GraphMultiEPG')
-rw-r--r--lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py
index 33639dc1..ac06df7b 100644
--- a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py
+++ b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py
@@ -40,7 +40,7 @@ class EPGList(HTMLComponent, GUIComponent):
self.time_base = None
self.time_epoch = time_epoch
self.list = None
- self.entry_rect = None
+ self.event_rect = None
def isSelectable(self, service, sname, event_list):
return (event_list and len(event_list) and True) or False
@@ -178,7 +178,7 @@ class EPGList(HTMLComponent, GUIComponent):
def selEntry(self, dir, visible=True):
cur_service = self.cur_service #(service, service_name, events)
- if not self.entry_rect:
+ if not self.event_rect:
self.recalcEntrySize()
if cur_service and self.cur_event is not None:
update = True
@@ -390,7 +390,7 @@ class GraphMultiEPG(Screen):
if ret[0]:
self.ask_time=ret[1]
self["list"].fillMultiEPG(self.services, ret[1])
- self.moveTimeLines()
+ self.moveTimeLines(True)
def closeScreen(self):
self.close(self.closeRecursive)