From 8994ca6dd5874bb95679408fbfaa92e979bcc444 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 25 Sep 2010 07:40:13 +0000 Subject: [PATCH] Detect OGV as previewable format --- src/misc.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/misc.cpp b/src/misc.cpp index a1ef16efb..a6fd29749 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -502,6 +502,7 @@ bool misc::isPreviewable(QString extension){ if(extension == "AVI") return true; if(extension == "MP3") return true; if(extension == "OGG") return true; + if(extension == "OGV") return true; if(extension == "OGM") return true; if(extension == "WMV") return true; if(extension == "WMA") return true;