diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-11-13 04:30:57 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-11-13 04:30:57 +0000 |
| commit | 36f427fcb34bb0dafa3d395dbc6bfc060494c874 (patch) | |
| tree | 3fcb7a8ea076b4e7f74efe4c220657cbe2bab3e6 /lib/python/Components | |
| parent | d1455ab44c24de50db9c4ed7efb2ac2a523b9fdd (diff) | |
| download | enigma2-36f427fcb34bb0dafa3d395dbc6bfc060494c874.tar.gz enigma2-36f427fcb34bb0dafa3d395dbc6bfc060494c874.zip | |
make delete working in movieMenu
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) |
