sixel: we no longer need the extra newline

Since we never place the cursor *under* the sixel anymore.
This commit is contained in:
Daniel Eklöf 2024-03-07 16:19:56 +01:00
parent 1421ba504d
commit a2fa667f45
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -1096,10 +1096,9 @@ sixel_unhook(struct terminal *term)
int start_row = do_scroll ? term->grid->cursor.point.row : 0;
const int start_col = do_scroll ? term->grid->cursor.point.col : 0;
/* Total number of rows needed by image (+ optional newline at the end) */
/* Total number of rows needed by image */
const int rows_needed =
(term->sixel.image.height + term->cell_height - 1) / term->cell_height +
(term->sixel.cursor_right_of_graphics ? 0 : 1);
(term->sixel.image.height + term->cell_height - 1) / term->cell_height;
bool free_image_data = true;