aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-18 15:16:28 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-18 15:16:28 +0000
commit9a80b9317de7f8ba7b592f3602dd7b5e8fa47f4c (patch)
tree810bf139cca483efded28d7d54ae1c615ce5f975 /lib/python
parentbdcd92b9a4723d0bb3c1769894a9e9476d786828 (diff)
downloadenigma2-9a80b9317de7f8ba7b592f3602dd7b5e8fa47f4c.tar.gz
enigma2-9a80b9317de7f8ba7b592f3602dd7b5e8fa47f4c.zip
fixes by adenin
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/PicturePlayer/plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/PicturePlayer/plugin.py b/lib/python/Plugins/Extensions/PicturePlayer/plugin.py
index a426866e..a9d61ed9 100644
--- a/lib/python/Plugins/Extensions/PicturePlayer/plugin.py
+++ b/lib/python/Plugins/Extensions/PicturePlayer/plugin.py
@@ -452,7 +452,7 @@ class picmain(Screen):
if not pathExists(currDir):
currDir = "/"
- self.filelist = FileList(currDir, matchingPattern = "(?i)^.*\.(jpeg|jpg|jpe|png|bmp)")
+ self.filelist = FileList(currDir, matchingPattern = "(?i)^.*\.(jpeg|jpg|jpe|png|bmp|gif)")
self["filelist"] = self.filelist
self["thumbnail"] = Pixmap()
@@ -557,5 +557,5 @@ def filescan(**kwargs):
def Plugins(**kwargs):
return \
- [PluginDescriptor(name="PicturePlayer", description="Picture Viewer (BMP, PNG, JPG)", icon="pictureplayer.png", where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main),
+ [PluginDescriptor(name="PicturePlayer", description="Picture Viewer (BMP, PNG, JPG, GIF)", icon="pictureplayer.png", where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main),
PluginDescriptor(name="PicturePlayer", where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan)]