diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-29 00:54:53 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-29 00:54:53 +0200 |
| commit | f99a3b6b778428033308db0210fe6466fc40ff16 (patch) | |
| tree | 9f49864e349053c76e212c8d90cdf5c87bd590bd /src/lib | |
| parent | 8aedb14c0f3414292d83586640ae8e579ec1e9d8 (diff) | |
Tread .psd as an image file.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/util.cc | 2 |
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" ); } |
