diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-07-11 23:54:37 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2018-07-12 02:18:09 +0300 |
commit | a8bfa5f053b04c467c69f73715e18bfaee3b07b8 (patch) | |
tree | 90d8ddae268bd85dabe41a36fcf7bae66b58164a /core/qthelper.cpp | |
parent | 45c19fd11ebf41c19f51eff067646551ab60e5bf (diff) | |
download | subsurface-a8bfa5f053b04c467c69f73715e18bfaee3b07b8.tar.gz |
Dive media: add ".mov" to list of known video extensions
This was an oversight in b28dba6087f0433af8ece176b64fcac54ca370a4.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/qthelper.cpp')
-rw-r--r-- | core/qthelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/qthelper.cpp b/core/qthelper.cpp index ed3de1a11..8b770f6b2 100644 --- a/core/qthelper.cpp +++ b/core/qthelper.cpp @@ -1212,7 +1212,7 @@ QString localFilePath(const QString &originalFilename) // TODO: Apparently Qt has no simple way of listing the supported video // codecs? Do we have to query them by hand using QMediaPlayer::hasSupport()? const QStringList videoExtensionsList = { - ".avi", ".mp4", ".mpeg", ".mpg", ".wmv" + ".avi", ".mp4", ".mov", ".mpeg", ".mpg", ".wmv" }; QStringList imageExtensionFilters() { |