From e37aa3b369b67456f490102c455b6c16367f8e02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 17 Apr 2020 20:33:08 +0200 Subject: [PATCH] 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. --- grid.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grid.c b/grid.c index b8659b55..9276eb04 100644 --- a/grid.c +++ b/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);