mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
grid: reflow: don't randomly insert hard linebreaks
Not sure why I added this code; maybe to workaround issues caused by the fact that the cursor position wasn't properly translated.
This commit is contained in:
parent
5546b40369
commit
e37aa3b369
1 changed files with 2 additions and 0 deletions
2
grid.c
2
grid.c
|
|
@ -157,6 +157,7 @@ grid_reflow(struct grid *grid, int new_rows, int new_cols,
|
|||
|
||||
/* Out of columns on current row in new grid? */
|
||||
if (new_col_idx >= new_cols) {
|
||||
#if 0
|
||||
/*
|
||||
* If last cell on last row and first cell on new
|
||||
* row are non-empty, wrap the line, otherwise
|
||||
|
|
@ -167,6 +168,7 @@ grid_reflow(struct grid *grid, int new_rows, int new_cols,
|
|||
{
|
||||
new_row->linebreak = true;
|
||||
}
|
||||
#endif
|
||||
|
||||
new_col_idx = 0;
|
||||
new_row_idx = (new_row_idx + 1) & (new_rows - 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue