Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
s3bk committed Nov 5, 2023
1 parent 7ee540f commit 0e411b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf/src/content.rs
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ pub fn serialize_ops(mut ops: &[Op]) -> Result<Vec<u8>> {
} else if c2 == p {
writeln!(f, "{} {} y", c1, p)?;
} else {
writeln!(f, "{} {} {} y", c1, c2, p)?;
writeln!(f, "{} {} {} c", c1, c2, p)?;
}
current_point = Some(p);
},
Expand Down

0 comments on commit 0e411b4

Please sign in to comment.