render: remove 'refresh' from render_resize()

This commit is contained in:
Daniel Eklöf 2020-01-03 13:56:10 +01:00
parent 46c434d3f1
commit d07fd7de39
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 8 additions and 9 deletions

View file

@ -679,7 +679,7 @@ term_init(const struct config *conf, struct fdm *fdm, struct wayland *wayl,
/* Don't go below a single cell */
width = max(width, term->cell_width);
height = max(height, term->cell_height);
render_resize(term, width, height, true);
render_resize(term, width, height);
return term;