Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed Jun 7, 2024
1 parent 497003e commit c7100dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ impl<'b> Iterator for LayoutRunIter<'b> {
if let Some(glyph_line_height) = glyph.line_height_opt {
line_height_opt = match line_height_opt {
Some(line_height) => Some(line_height.max(glyph_line_height)),
None => Some(glyph_line_height)
None => Some(glyph_line_height),
};
}
}
Expand Down

0 comments on commit c7100dc

Please sign in to comment.