Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenzV committed Nov 30, 2024
1 parent adbcf69 commit b296ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/parley/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ fn main() {
// Get the krilla font.
let krilla_font = font_cache
.entry(id)
.or_insert_with(|| Font::new(font_data, font.index).unwrap());
.or_insert_with(|| Font::new(font_data, font.index, true).unwrap());
let font_size = run.font_size();

// This is part is somewhat convoluted, the reason being that each glyph might
Expand Down

0 comments on commit b296ff0

Please sign in to comment.