summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-03-29 00:54:53 +0200
committerCarl Hetherington <cth@carlh.net>2021-03-29 00:54:53 +0200
commitf99a3b6b778428033308db0210fe6466fc40ff16 (patch)
tree9f49864e349053c76e212c8d90cdf5c87bd590bd /src
parent8aedb14c0f3414292d83586640ae8e579ec1e9d8 (diff)
Tread .psd as an image file.
Diffstat (limited to 'src')
-rw-r--r--src/lib/util.cc2
1 files changed, 1 insertions, 1 deletions
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"
);
}