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:
parent
b48e2fc2d8
commit
6ad0be5fb3
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue