diff options
author | nicm <nicm> | 2019-08-01 07:08:13 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-08-01 07:08:13 +0000 |
commit | 58bbce09e210ab1fcead4496e3983332b0cb3bf3 (patch) | |
tree | c2cab5b741be34a18d300bd96e6a806ed393c521 /grid.c | |
parent | e698ee01ddf4397f6c2d625281be39d4f4374e8d (diff) | |
download | rtmux-58bbce09e210ab1fcead4496e3983332b0cb3bf3.tar.gz rtmux-58bbce09e210ab1fcead4496e3983332b0cb3bf3.tar.bz2 rtmux-58bbce09e210ab1fcead4496e3983332b0cb3bf3.zip |
Remove check for same size - size has already been changed so this
breaks reflow.
Diffstat (limited to 'grid.c')
-rw-r--r-- | grid.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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. |