From eaa7ca31ab84fdbdfede784a3d1a826ad6fb1c4f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 28 Mar 2021 22:55:50 +0000 Subject: [PATCH] Tread .psd as an image file. --- src/lib/util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util.cc b/src/lib/util.cc index a09e6859f..d36ae744f 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -603,7 +603,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" ); } -- 2.30.2