Skip to content

Commit

Permalink
Issues #82, #83: allow avif,heif,heic,jxl
Browse files Browse the repository at this point in the history
  • Loading branch information
fire-eggs committed Apr 29, 2024
1 parent 118ec8f commit 558dd4c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CBXShell/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ BOOL IsImage(LPCTSTR szFile)
if (StrEqual(_e, _T(".dng"))) return TRUE;
if (StrEqual(_e, _T(".cr2"))) return TRUE;

// Issues # 83, # 82
if (StrEqual(_e, _T(".heif"))) return TRUE;
if (StrEqual(_e, _T(".heic"))) return TRUE;
if (StrEqual(_e, _T(".avif"))) return TRUE;
if (StrEqual(_e, _T(".jxl"))) return TRUE;

return FALSE;
}

Expand Down

0 comments on commit 558dd4c

Please sign in to comment.