mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:27:35 +00:00
Userland: Register TIFF as a supported image file type
This includes both .tiff and .tif extensions.
This commit is contained in:
parent
67c6af8cfe
commit
26a3be17c8
3 changed files with 4 additions and 2 deletions
|
@ -25,7 +25,7 @@ struct FileTypeFilter {
|
|||
|
||||
static FileTypeFilter image_files()
|
||||
{
|
||||
return FileTypeFilter { "Image Files", Vector<DeprecatedString> { "png", "gif", "bmp", "dip", "pbm", "pgm", "ppm", "ico", "iff", "jpeg", "jpg", "jxl", "dds", "qoi", "webp", "tvg" } };
|
||||
return FileTypeFilter { "Image Files", Vector<DeprecatedString> { "png", "gif", "bmp", "dip", "pbm", "pgm", "ppm", "ico", "iff", "jpeg", "jpg", "jxl", "dds", "qoi", "tif", "tiff", "webp", "tvg" } };
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue