From cae7805a2a0565788bd689bc8bd4daf9bcefa890 Mon Sep 17 00:00:00 2001 From: wreald Date: Sat, 25 Jan 2025 16:48:31 +1100 Subject: [PATCH] Fix margins not being damaged when reloading colours. --- terminal.c | 1 + 1 file changed, 1 insertion(+) diff --git a/terminal.c b/terminal.c index e6beecc8..a4ccdfa6 100644 --- a/terminal.c +++ b/terminal.c @@ -4716,5 +4716,6 @@ term_soft_reload_config_colors(struct terminal *term) { memcpy(term->colors.table, term->conf->colors.table, sizeof(term->colors.table)); term_damage_all(term); + term_damage_margins(term); render_refresh(term); }