Fix wrong line wrap

This commit is contained in:
Thomas Forgione 2023-10-26 15:07:16 +02:00
parent 265208db3a
commit ce8b4fae68
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ impl Tile {
if self.counting && !is_variation_selector {
self.column_number += 1;
if self.column_number == self.inner_size.0 + 1 {
if self.column_number == self.inner_size.0 {
self.stdout.push(String::new());
self.column_number = 0;
}