X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FPlugins%2FExtensions%2FGraphMultiEPG%2FGraphMultiEpg.py;h=036cb7a6fd7a88f50abbd8761ba63fd32de9fe6e;hp=367b27f025a36106d2a8b15b0275b116ffae9add;hb=04f4636324ab06c5a3a4f618100048e159eaf6f9;hpb=efc5aca651306518e6f21a6bd7cbfa1928821b60 diff --git a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py index 367b27f..036cb7a 100644 --- a/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py +++ b/lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py @@ -52,7 +52,7 @@ class EPGList(HTMLComponent, GUIComponent): self.foreColorService = None self.backColorService = None - def applySkin(self, desktop): + def applySkin(self, desktop, screen): if self.skinAttributes is not None: attribs = [ ] for (attrib, value) in self.skinAttributes: @@ -73,7 +73,7 @@ class EPGList(HTMLComponent, GUIComponent): else: attribs.append((attrib,value)) self.skinAttributes = attribs - return GUIComponent.applySkin(self, desktop) + return GUIComponent.applySkin(self, desktop, screen) def isSelectable(self, service, sname, event_list): return (event_list and len(event_list) and True) or False @@ -498,7 +498,7 @@ class GraphMultiEPG(Screen): serviceref = cur[1] if event is None: return - newEntry = RecordTimerEntry(serviceref, checkOldTimers = True, *parseEvent(event)) + newEntry = RecordTimerEntry(serviceref, checkOldTimers = True, dirname = config.movielist.last_timer_videodir.value, *parseEvent(event)) self.session.openWithCallback(self.timerEditFinished, TimerEntry, newEntry) def timerEditFinished(self, answer):