From fd28668a1c2dd97e7543693f29b767ce03ba0253 Mon Sep 17 00:00:00 2001 From: Utkarsh Verma Date: Thu, 2 Jun 2022 09:16:24 +0530 Subject: [PATCH] Refresh terminal after alpha is reset --- terminal.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terminal.c b/terminal.c index f35d38d3..10a85841 100644 --- a/terminal.c +++ b/terminal.c @@ -2028,6 +2028,8 @@ bool term_alpha_reset(struct terminal *term) { term->colors.alpha = term->conf->colors.alpha; + term->render.last_buf = NULL; + render_refresh(term); return true; }