diff options
Diffstat (limited to 'src/fe-text/statusbar-items.c')
-rw-r--r-- | src/fe-text/statusbar-items.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |