Skip to content

Commit

Permalink
fix small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenzV committed Aug 28, 2024
1 parent 5d53410 commit 34204f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ impl<'a> Iterator for GlyphGrouper<'a, '_> {
.collect::<Vec<_>>();

let glyph_group =
GlyphGroup::new(first.font_identifier, glyphs, first.y_offset, first.size);
GlyphGroup::new(first.font_identifier, glyphs, first.size, first.y_offset);

Some(glyph_group)
}
Expand Down

0 comments on commit 34204f0

Please sign in to comment.