Revert "Promote Noto Color Emoji fallback"

This reverts commit 5e82de11cf.
This commit is contained in:
Jeremy Soller 2024-06-17 17:19:31 -06:00
parent 24fb208953
commit 7677ba388c

View file

@ -8,11 +8,9 @@ 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",
@ -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?
]
}