From dd58dad15ac0b298a25a7a3412240bfaaebe9998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 1 Jul 2024 19:29:54 +0200 Subject: [PATCH] csi: redraw margins after restoring the palette --- csi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/csi.c b/csi.c index 42f19a91..86117c7e 100644 --- a/csi.c +++ b/csi.c @@ -2101,6 +2101,7 @@ csi_dispatch(struct terminal *term, uint8_t final) /* TODO: we _could_ iterate all cells and only dirty those that are affected by the palette change... */ term_damage_view(term); + term_damage_margins(term); } else if (slot == 0) { LOG_ERR("XTPOPCOLORS: cannot pop beyond the first element"); } else {