summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-03-28 22:55:50 +0000
committerCarl Hetherington <cth@carlh.net>2021-03-28 22:55:50 +0000
commiteaa7ca31ab84fdbdfede784a3d1a826ad6fb1c4f (patch)
treeb8afa8517521d406e382af89da571c5d82066c7d
parent1ad99f118da3ba357b2907152ec6ea731b3c583a (diff)
Tread .psd as an image file.
-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 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"
);
}