Fix Noto Color Emoji font fallback order for Unix

This commit is contained in:
Héctor Ramón Jiménez 2022-12-16 21:20:27 +01:00
parent f92a2058cf
commit 66288ab2da
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -8,8 +8,6 @@ pub fn common_fallback() -> &'static [&'static str] {
&[
/* Sans-serif fallbacks */
"Noto Sans",
/* Emoji fallbacks*/
"Noto Color Emoji",
/* More sans-serif fallbacks */
"DejaVu Sans",
"FreeSans",
@ -20,6 +18,8 @@ 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?
]
}