mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-16 05:34:00 -04:00
Revert "term: print: line-wrap multi-column characters instead of cutting them in half"
This reverts commit 8448296bb3.
Applications need to be multi-column character aware anyway, and they
should deal with this.
This commit is contained in:
parent
8448296bb3
commit
c090a0664f
2 changed files with 4 additions and 6 deletions
|
|
@ -2284,11 +2284,9 @@ term_disable_app_sync_updates(struct terminal *term)
|
|||
}
|
||||
|
||||
static inline void
|
||||
print_linewrap(struct terminal *term, int width)
|
||||
print_linewrap(struct terminal *term)
|
||||
{
|
||||
if (likely(!(term->grid->cursor.lcf ||
|
||||
term->grid->cursor.point.col + width > term->cols)))
|
||||
{
|
||||
if (likely(!term->grid->cursor.lcf)) {
|
||||
/* Not and end of line */
|
||||
return;
|
||||
}
|
||||
|
|
@ -2331,7 +2329,7 @@ term_print(struct terminal *term, wchar_t wc, int width)
|
|||
if (unlikely(width <= 0))
|
||||
return;
|
||||
|
||||
print_linewrap(term, width);
|
||||
print_linewrap(term);
|
||||
print_insert(term, width);
|
||||
|
||||
sixel_delete_at_cursor(term);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue