diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-11 15:35:15 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-11 15:35:15 +0000 |
| commit | 4f46a90d789f28eb0ca156caeb2bb55136d8ac85 (patch) | |
| tree | ef900f2d2ccb96c5fd67e98140118cc4af699d6a /lib/python/Screens | |
| parent | 22414818f32ccf04fa6f6805b0e2fde56e1563ea (diff) | |
| download | enigma2-4f46a90d789f28eb0ca156caeb2bb55136d8ac85.tar.gz enigma2-4f46a90d789f28eb0ca156caeb2bb55136d8ac85.zip | |
show plugin description in plugin list
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/PluginBrowser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py index c03aa910..6d3ce66a 100644 --- a/lib/python/Screens/PluginBrowser.py +++ b/lib/python/Screens/PluginBrowser.py @@ -35,7 +35,7 @@ class PluginBrowser(Screen): self.list = [] self.pluginlist = plugins.getPluginList() for x in self.pluginlist: - self.list.append(PluginEntryComponent(x[0], x[1])) + self.list.append(PluginEntryComponent(x[0], x[1], x[6])) self["list"].l.setList(self.list) |
