From d0034cd1124483766af7da278e1719613fecc135 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub Date: Tue, 7 Jul 2026 14:14:36 -0600 Subject: [PATCH] Fixed missing comma in color tooltips --- src/common/text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/text.c b/src/common/text.c index fc16578e..4fb653e7 100644 --- a/src/common/text.c +++ b/src/common/text.c @@ -1777,7 +1777,7 @@ text_color_event_list (int color) { if (line_len + name_len + 2 > 76) { - g_string_append_c (events, '\n'); + g_string_append (events, ",\n"); line_len = 0; } else