summaryrefslogtreecommitdiff
path: root/src/gui/curses/gui-curses-window.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2008-05-06 16:51:30 +0200
committerSebastien Helleu <flashcode@flashtux.org>2008-05-06 16:51:30 +0200
commite9603acb1a1943bda3c2cc809e5e39ff8a13b68c (patch)
treed4fb7fef63f5a4c1d415fdca9c1938016b23bbb3 /src/gui/curses/gui-curses-window.c
parente7a16efa0cf5123f87ef6d7072fbbb9ccdd42bac (diff)
downloadweechat-e9603acb1a1943bda3c2cc809e5e39ff8a13b68c.zip
IRC DCC chat and file (without resume) reintroduced, via xfer plugin (called by /dcc command)
Diffstat (limited to 'src/gui/curses/gui-curses-window.c')
-rw-r--r--src/gui/curses/gui-curses-window.c1
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,