Promote Noto Color Emoji fallback

This commit is contained in:
apricotbucket28 2024-06-04 16:50:16 -03:00 committed by Jeremy Soller
parent b0a70c70ff
commit 5e82de11cf

View file

@ -8,9 +8,11 @@ pub fn common_fallback() -> &'static [&'static str] {
&[
/* Sans-serif fallbacks */
"Noto Sans",
"FreeSans",
/* Emoji fallbacks*/
"Noto Color Emoji",
/* More sans-serif fallbacks */
"DejaVu Sans",
"FreeSans",
/* Mono fallbacks */
"Noto Sans Mono",
"DejaVu Sans Mono",
@ -18,8 +20,6 @@ pub fn common_fallback() -> &'static [&'static str] {
/* Symbols fallbacks */
"Noto Sans Symbols",
"Noto Sans Symbols2",
/* Emoji fallbacks*/
"Noto Color Emoji",
//TODO: Add CJK script here for doublewides?
]
}