From 49d84e8df529368d141925d0ca877fc1b561d573 Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Fri, 28 Feb 2025 09:14:40 +0000 Subject: [PATCH] Small bugfix: produce the right CSI sequence when reporting the theme to the terminal application. --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.c b/window.c index 687744c4..fe525ea0 100644 --- a/window.c +++ b/window.c @@ -1908,7 +1908,7 @@ window_pane_send_theme_update(struct window_pane *wp) input_key_pane(wp, KEYC_REPORT_LIGHT_THEME, NULL); break; case THEME_DARK: - input_key_pane(wp, KEYC_REPORT_LIGHT_THEME, NULL); + input_key_pane(wp, KEYC_REPORT_DARK_THEME, NULL); break; case THEME_UNKNOWN: break;