diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-03-07 02:15:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-06 23:15:43 +0000 |
commit | de5d770416eb6ea5567b2b46874b8e35b084b9e1 (patch) | |
tree | 5a2afbc20b8bdee35ca79844732b4ab5a62f8518 /font/src/ft/fc/mod.rs | |
parent | 33cabfc3d2e9dca3267199c822d2a37ed6d72260 (diff) | |
download | alacritty-de5d770416eb6ea5567b2b46874b8e35b084b9e1.tar.gz alacritty-de5d770416eb6ea5567b2b46874b8e35b084b9e1.zip |
Fix caching of variable font faces
Diffstat (limited to 'font/src/ft/fc/mod.rs')
-rw-r--r-- | font/src/ft/fc/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/ft/fc/mod.rs b/font/src/ft/fc/mod.rs index d2fd9d0a..cfcac4aa 100644 --- a/font/src/ft/fc/mod.rs +++ b/font/src/ft/fc/mod.rs @@ -41,7 +41,7 @@ pub mod char_set; pub use char_set::{CharSet, CharSetRef}; pub mod pattern; -pub use pattern::{Pattern, PatternHash, PatternRef}; +pub use pattern::{FTFaceLocation, Pattern, PatternHash, PatternRef}; /// Find the font closest matching the provided pattern. /// |