diff options
author | Naveen M K <naveen@syrusdark.website> | 2021-03-15 22:11:58 +0530 |
---|---|---|
committer | Naveen M K <naveen@syrusdark.website> | 2021-03-15 22:15:00 +0530 |
commit | ebc8ca7691dd403f1429880e4809f07a46275420 (patch) | |
tree | eb2e018d9f9a87a3cdb3427fb9bcdb236aadfc19 | |
parent | df366de870fedf0cecd46d9c25d6b4c03a3b030f (diff) | |
download | pango-ebc8ca7691dd403f1429880e4809f07a46275420.tar.gz |
Fix a typo in pango/pangowin32-fontmap.c which caused
the `Cursive` default fallback to not load/work on Windows
It should be `comic` and not `commic`.
Signed-off-by: Naveen M K <naveen@syrusdark.website>
-rw-r--r-- | pango/pangowin32-fontmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pangowin32-fontmap.c b/pango/pangowin32-fontmap.c index f69ce1f9..e5e81bba 100644 --- a/pango/pangowin32-fontmap.c +++ b/pango/pangowin32-fontmap.c @@ -467,7 +467,7 @@ static const char * const builtin_aliases[] = { "mono = \"dejavu sans mono,courier new,lucida console,courier monothai,mingliu,simsun,gulimche,ms gothic,sylfaen,kartika,latha,mangal,raavi\"", "monospace = \"dejavu sans mono,courier new,lucida console,courier monothai,mingliu,simsun,gulimche,ms gothic,sylfaen,kartika,latha,mangal,raavi\"", "emoji = \"segoe ui emoji,segoe ui symbol,segoe ui\"", - "cursive = \"commic sans ms\"", + "cursive = \"comic sans ms\"", "fantasy = \"gabriola,impact\"", "system-ui = \"yu gothic ui,segoe ui,meiryo\"", }; |