LibGfx: Make Bitmap path handling case insensitive

Bitmap::is_path_a_supported_image_format() and Bitmap::load_from_file()
now check the file extension with CaseSensitivity::CaseInsensitive.

This fixes a couple of inconsistencies, for example would
FileSystemModel::icon_for() recognize image files uppercase extensions
but couldn't create thumbnails for them (any attempt to create a bitmap
from such files would fail).
This commit is contained in:
Linus Groh 2020-11-13 00:25:27 +00:00 committed by Andreas Kling
parent d3ee3fc68a
commit 5b68ea8dde
Notes: sideshowbarker 2024-07-19 02:29:15 +09:00
3 changed files with 5 additions and 5 deletions

View file

@ -471,7 +471,7 @@ Icon FileSystemModel::icon_for(const Node& node) const
if (node.full_path() == "/")
return FileIconProvider::icon_for_path("/");
if (Gfx::Bitmap::is_path_a_supported_image_format(node.name.to_lowercase())) {
if (Gfx::Bitmap::is_path_a_supported_image_format(node.name)) {
if (!node.thumbnail) {
if (!const_cast<FileSystemModel*>(this)->fetch_thumbnail_for(node))
return FileIconProvider::filetype_image_icon();