From 71c62664cd0b55540721d5e87495726d47cd7e03 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 25 Oct 2021 09:11:23 +0530 Subject: [PATCH] Fix tab bar background not being update in the shader when using set-colors --- kitty/state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/state.c b/kitty/state.c index f0551e5d5..f6e7d411c 100644 --- a/kitty/state.c +++ b/kitty/state.c @@ -948,7 +948,7 @@ PYWRAP1(patch_global_colors) { } P(active_border_color); P(inactive_border_color); P(bell_border_color); if (configured) { - P(background); P(url_color); + P(background); P(url_color); P(tab_bar_background); P(mark1_background); P(mark1_foreground); P(mark2_background); P(mark2_foreground); P(mark3_background); P(mark3_foreground); }