From fb1124b1b970dae803e356e855e5b1efd3c1fc92 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 25 Dec 2023 17:26:06 +0530 Subject: [PATCH] ... --- kitty/state.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kitty/state.c b/kitty/state.c index f10735665..306bb3fa1 100644 --- a/kitty/state.c +++ b/kitty/state.c @@ -1035,9 +1035,8 @@ PYWRAP1(os_window_font_size) { } } os_window_update_size_increments(os_window); - // On Wayland with CSD title needs to be re-rendered in a different font size - if (os_window->window_title && global_state.is_wayland) set_os_window_title(os_window, NULL); - + // On Wayland with CSD title needs to be re-rendered in a different font size + if (os_window->window_title && global_state.is_wayland) set_os_window_title(os_window, NULL); } return Py_BuildValue("d", os_window->font_sz_in_pts); END_WITH_OS_WINDOW