mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
Revert "grid: invert the default value of ‘linebreak’, from false to true"
This reverts commit cdd46cdf85.
This commit is contained in:
parent
d58290ea12
commit
37f094280b
2 changed files with 6 additions and 12 deletions
14
grid.c
14
grid.c
|
|
@ -318,7 +318,7 @@ grid_row_alloc(int cols, bool initialize)
|
|||
{
|
||||
struct row *row = xmalloc(sizeof(*row));
|
||||
row->dirty = false;
|
||||
row->linebreak = true;
|
||||
row->linebreak = false;
|
||||
row->extra = NULL;
|
||||
row->prompt_marker = false;
|
||||
|
||||
|
|
@ -538,7 +538,7 @@ _line_wrap(struct grid *old_grid, struct row **new_grid, struct row *row,
|
|||
} else {
|
||||
/* Scrollback is full, need to re-use a row */
|
||||
grid_row_reset_extra(new_row);
|
||||
new_row->linebreak = true;
|
||||
new_row->linebreak = false;
|
||||
new_row->prompt_marker = false;
|
||||
|
||||
tll_foreach(old_grid->sixel_images, it) {
|
||||
|
|
@ -878,14 +878,6 @@ grid_resize_and_reflow(
|
|||
&new_row->cells[new_col_idx], &old_row->cells[from],
|
||||
amount * sizeof(struct cell));
|
||||
|
||||
/*
|
||||
* We’ve “printed” to this line - reset linebreak.
|
||||
*
|
||||
* If the old line ends with a hard linebreak, we’ll
|
||||
* set linebreak=true on the last new row we print to.
|
||||
*/
|
||||
new_row->linebreak = false;
|
||||
|
||||
count -= amount;
|
||||
from += amount;
|
||||
new_col_idx += amount;
|
||||
|
|
@ -944,7 +936,7 @@ grid_resize_and_reflow(
|
|||
}
|
||||
|
||||
|
||||
if (old_row->linebreak && col_count > 0) {
|
||||
if (old_row->linebreak) {
|
||||
/* Erase the remaining cells */
|
||||
memset(&new_row->cells[new_col_idx], 0,
|
||||
(new_cols - new_col_idx) * sizeof(new_row->cells[0]));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue