diff options
author | Martin Lindhe <martinlindhe@users.noreply.github.com> | 2017-07-28 18:00:55 +0200 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-07-28 09:00:55 -0700 |
commit | f3e0c8609f13c09a2b3ac1d909cac31a8e285b14 (patch) | |
tree | 4094adb21c6060bde79e172133e84609217fc830 /font/src/darwin/mod.rs | |
parent | b5f7cc315b3d1f9f75d2f19af3e7a3e694164de9 (diff) | |
download | alacritty-f3e0c8609f13c09a2b3ac1d909cac31a8e285b14.tar.gz alacritty-f3e0c8609f13c09a2b3ac1d909cac31a8e285b14.zip |
font: update macOS core-text dependency to 6.1.0, fixes #685 (#692)
Diffstat (limited to 'font/src/darwin/mod.rs')
-rw-r--r-- | font/src/darwin/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/font/src/darwin/mod.rs b/font/src/darwin/mod.rs index a972301a..45423123 100644 --- a/font/src/darwin/mod.rs +++ b/font/src/darwin/mod.rs @@ -582,13 +582,13 @@ mod tests { // Check to_font let fonts = list.iter() - .map(|desc| desc.to_font(72.)) + .map(|desc| desc.to_font(72., false)) .collect::<Vec<_>>(); for font in fonts { // Get a glyph for c in &['a', 'b', 'c', 'd'] { - let glyph = font.get_glyph(*c, 72.).unwrap(); + let glyph = font.get_glyph(*c, 72., false).unwrap(); // Debug the glyph.. sigh for row in 0..glyph.height { |