summaryrefslogtreecommitdiff
path: root/font/src/darwin/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'font/src/darwin/mod.rs')
-rw-r--r--font/src/darwin/mod.rs4
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 {