Remove check for same size - size has already been changed so this

breaks reflow.
pull/1914/head
nicm 2019-08-01 07:08:13 +00:00 committed by Nicholas Marriott
parent 79f09b4d85
commit 7e4439beb7
1 changed files with 0 additions and 4 deletions

4
grid.c
View File

@ -1220,10 +1220,6 @@ grid_reflow(struct grid *gd, u_int sx)
struct grid_cell gc;
u_int yy, width, i, at, first;
/* Do not reflow to the same size. */
if (sx == gd->sx)
return;
/*
* Create a destination grid. This is just used as a container for the
* line data and may not be fully valid.