Skip to content

Commit

Permalink
fix: freezing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Jul 2, 2024
1 parent 6389398 commit bdcbe7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/geom/tty/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func swapImage(
info.Fprintf(data, terminfo.ExitAttributeMode)

// CJK characters
col += srcCell.Width() - 1
col += geom.Max(srcCell.Width(), 1) - 1
}
}

Expand Down

0 comments on commit bdcbe7b

Please sign in to comment.