From: Carl Hetherington Date: Sun, 28 Mar 2021 22:54:53 +0000 (+0200) Subject: Tread .psd as an image file. X-Git-Tag: v2.15.137~5 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=f99a3b6b778428033308db0210fe6466fc40ff16 Tread .psd as an image file. --- diff --git a/src/lib/util.cc b/src/lib/util.cc index 2c0167829..24ea42b8f 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -616,7 +616,7 @@ valid_image_file (boost::filesystem::path f) ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp" || ext == ".tga" || ext == ".dpx" || ext == ".j2c" || ext == ".j2k" || ext == ".jp2" || ext == ".exr" || - ext == ".jpf" + ext == ".jpf" || ext == ".psd" ); }