Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasimir666 <casimir666@users.sourceforge.net>2008-10-09 16:38:02 +0400
committerCasimir666 <casimir666@users.sourceforge.net>2008-10-09 16:38:02 +0400
commit70d72e66e72a23d544fd0ba99e3db8c7c7a3b31f (patch)
tree71dc60458c2762c44d44f7fc96ed552c93128f4a /src/apps/mplayerc/PlayerPlaylistBar.cpp
parentbcbe18d32d188d34093608e6aed5ab3309c2f86e (diff)
Fix : UOP removed from first PGC
Fix : DVD remember position with /dvdpos option Fix : Don't play pictures with "Open folder" action git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@831 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/PlayerPlaylistBar.cpp')
-rw-r--r--src/apps/mplayerc/PlayerPlaylistBar.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/apps/mplayerc/PlayerPlaylistBar.cpp b/src/apps/mplayerc/PlayerPlaylistBar.cpp
index 9a222d04d..98fc2f3ea 100644
--- a/src/apps/mplayerc/PlayerPlaylistBar.cpp
+++ b/src/apps/mplayerc/PlayerPlaylistBar.cpp
@@ -234,7 +234,8 @@ static bool SearchFiles(CString mask, CAtlList<CString>& sl)
for(int i = 0; i < mf.GetCount(); i++)
{
CMediaFormatCategory& mfc = mf.GetAt(i);
- if((mfc.FindExt(ext))/* && (CPPageFormats::IsRegistered(ext, mfc.GetProgId()))*/)
+ if((mfc.FindExt(ext)) &&
+ (mfc.GetProgId() != _T("mplayerc.jpeg"))) // Prevent playing pictures on "play folder"
{
sl.AddTail(path);
break;