From bd13c2c86a08189d6d5269616634a123f59bde9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 3 Jan 2020 12:45:30 +0100 Subject: [PATCH] term: render_resize() now takes a 'refresh' argument --- terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.c b/terminal.c index 14cbf251..b31d3867 100644 --- a/terminal.c +++ b/terminal.c @@ -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); + render_resize(term, width, height, true); return term;