From 886ca98e11c1a1a5237250b5d3bfe0c8efa0c7a3 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 25 Sep 2000 17:19:37 +0000 Subject: [PATCH] Don't show statusbar with bold color git-svn-id: http://svn.irssi.org/repos/irssi/trunk@667 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-text/statusbar-items.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-text/statusbar-items.c b/src/fe-text/statusbar-items.c index 9a3e7f3d..b59ce59b 100644 --- a/src/fe-text/statusbar-items.c +++ b/src/fe-text/statusbar-items.c @@ -694,7 +694,7 @@ static void statusbar_topic(SBAR_ITEM_REC *item, int ypos) if (topic != NULL) { topic = strip_codes(topic); str = g_strdup_printf("%.*s", item->size, topic); - set_color(stdscr, sbar_color_bold); addstr(str); + set_color(stdscr, sbar_color_normal); addstr(str); g_free(str); g_free(topic); }