From 04a961ea7fe1de3229f63f1326ff708ab5659766 Mon Sep 17 00:00:00 2001 From: Gavin Hurlbut Date: Wed, 4 Jul 2012 00:28:34 -0700 Subject: [PATCH] Add flv to GalleryUtil::GetMovieFilter Fixes #10638 --- mythplugins/mythgallery/mythgallery/galleryutil.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mythplugins/mythgallery/mythgallery/galleryutil.cpp b/mythplugins/mythgallery/mythgallery/galleryutil.cpp index 4d67b0bacf3..61f61a7f3db 100644 --- a/mythplugins/mythgallery/mythgallery/galleryutil.cpp +++ b/mythplugins/mythgallery/mythgallery/galleryutil.cpp @@ -79,6 +79,8 @@ QStringList GalleryUtil::GetMovieFilter(void) filt.push_back("*.mov"); filt.push_back("*.wmv"); filt.push_back("*.3gp"); + filt.push_back("*.wmv"); + filt.push_back("*.flv"); return filt; }