diff options
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibGfx/Font/FontDatabase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibGfx/Font/FontDatabase.cpp b/Userland/Libraries/LibGfx/Font/FontDatabase.cpp index 59bd281f6c..36f892e24b 100644 --- a/Userland/Libraries/LibGfx/Font/FontDatabase.cpp +++ b/Userland/Libraries/LibGfx/Font/FontDatabase.cpp @@ -116,8 +116,8 @@ Font& FontDatabase::default_fixed_width_font() } struct FontDatabase::Private { - HashMap<DeprecatedString, NonnullRefPtr<Gfx::Font>> full_name_to_font_map; - HashMap<DeprecatedFlyString, Vector<NonnullRefPtr<Typeface>>> typefaces; + HashMap<DeprecatedString, NonnullRefPtr<Gfx::Font>, CaseInsensitiveStringTraits> full_name_to_font_map; + HashMap<DeprecatedFlyString, Vector<NonnullRefPtr<Typeface>>, CaseInsensitiveStringTraits> typefaces; }; void FontDatabase::load_all_fonts_from_path(DeprecatedString const& root) |