LibGfx: Remove bogus early return from Font::is_emoji_font()

This commit is contained in:
Tim Ledbetter 2026-06-18 21:32:14 +01:00 committed by Andreas Kling
parent 5af7dadd40
commit bebcf95883

View file

@ -185,7 +185,6 @@ bool Font::is_emoji_font() const
}();
m_is_emoji_font = (name_contains_emoji && !looks_like_text) || (has_any_color && !looks_like_text) ? TriState::True : TriState::False;
return false;
}
return m_is_emoji_font == TriState::True;