1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2025-02-17 15:57:08 -05:00

Use font style for fontconfig fallback

This commit is contained in:
Kirill Chibisov 2020-03-17 04:50:12 +03:00 committed by GitHub
parent b48e2fc2d8
commit 6ad0be5fb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -215,7 +215,6 @@ impl FreeTypeRasterizer {
let mut pattern = Pattern::new(); let mut pattern = Pattern::new();
pattern.add_family(&desc.name); pattern.add_family(&desc.name);
pattern.add_pixelsize(size); pattern.add_pixelsize(size);
let hash = pattern.hash();
// Add style to a pattern // Add style to a pattern
match desc.style { match desc.style {
@ -230,6 +229,9 @@ impl FreeTypeRasterizer {
}, },
} }
// Hash requested pattern
let hash = pattern.hash();
pattern.config_substitute(config, fc::MatchKind::Pattern); pattern.config_substitute(config, fc::MatchKind::Pattern);
pattern.default_substitute(); pattern.default_substitute();