diff options
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/MovieList.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py index ecf50607..9ab58704 100644 --- a/lib/python/Components/MovieList.py +++ b/lib/python/Components/MovieList.py @@ -70,6 +70,7 @@ class MovieList(HTMLComponent, GUIComponent): # nice list self.list = [ ] + self.root = root serviceHandler = eServiceCenter.getInstance() list = serviceHandler.list(root) @@ -88,3 +89,7 @@ class MovieList(HTMLComponent, GUIComponent): # now process them... for ref in movieList: self.list.append(MovieListEntry(ref, serviceHandler)) + + def reload(self): + self.load(self.root) + self.l.setList(self.list) |
