From 77d637cc47da0b708e0a44510a6ca73b1aa05d2e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 5 Apr 2024 11:44:43 +0530 Subject: [PATCH] Wayland GNOME: Less jarring title introducer in CSD --- kitty/glfw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/glfw.c b/kitty/glfw.c index 34c53fd40..ea5c67a71 100644 --- a/kitty/glfw.c +++ b/kitty/glfw.c @@ -671,7 +671,7 @@ draw_text_callback(GLFWwindow *window, const char *text, uint32_t fg, uint32_t b unsigned px_sz = (unsigned)(global_state.callback_os_window->fonts_data->font_sz_in_pts * ydpi / 72.); px_sz = MIN(px_sz, 3 * height / 4); static char title[2048]; - snprintf(title, sizeof(title), "🐱 %s", text); + snprintf(title, sizeof(title), " ❭ %s", text); bool ok = render_single_line(csd_title_render_ctx, title, px_sz, fg, bg, output_buf, width, height, x_offset, y_offset, right_margin); if (!ok && PyErr_Occurred()) PyErr_Print(); return ok;