diff options
Diffstat (limited to 'src/gui/curses/gui-curses-window.c')
-rw-r--r-- | src/gui/curses/gui-curses-window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/curses/gui-curses-window.c b/src/gui/curses/gui-curses-window.c index 77a8ece29..c7fb4c250 100644 --- a/src/gui/curses/gui-curses-window.c +++ b/src/gui/curses/gui-curses-window.c @@ -323,6 +323,7 @@ gui_window_set_custom_color_fg_bg (WINDOW *window, int fg, int bg) if ((fg >= 0) && (fg < GUI_CURSES_NUM_WEECHAT_COLORS) && (bg >= 0) && (bg < GUI_CURSES_NUM_WEECHAT_COLORS)) { + gui_window_remove_color_style (window, A_BOLD); wattron (window, gui_weechat_colors[fg].attributes); gui_window_set_color (window, gui_weechat_colors[fg].foreground, |