1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Don't show statusbar with bold color

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@667 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-09-25 17:19:37 +00:00 committed by cras
parent bb20de0d43
commit 886ca98e11

View File

@ -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);
}