summaryrefslogtreecommitdiff
path: root/src/gui/curses
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2011-02-05 11:11:20 +0100
committerSebastien Helleu <flashcode@flashtux.org>2011-02-05 11:11:20 +0100
commitf2be50f4b192bca95be061d9ac540f31758466b3 (patch)
tree810745bb22c362e21e8eac9e86a58155e1c42426 /src/gui/curses
parent9932f067107580621a7ec11eeb2b83c158660c33 (diff)
downloadweechat-f2be50f4b192bca95be061d9ac540f31758466b3.zip
Fix display of extended foreground color on non-default background in bars
Diffstat (limited to 'src/gui/curses')
-rw-r--r--src/gui/curses/gui-curses-bar-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/curses/gui-curses-bar-window.c b/src/gui/curses/gui-curses-bar-window.c
index bf5f7c015..19e8c9223 100644
--- a/src/gui/curses/gui-curses-bar-window.c
+++ b/src/gui/curses/gui-curses-bar-window.c
@@ -291,7 +291,7 @@ gui_bar_window_print_string (struct t_gui_bar_window *bar_window,
string += 3;
}
}
- if (str_fg[0] && (string[0] == ','))
+ if (string[0] == ',')
{
string++;
if (string[0] == GUI_COLOR_PAIR_CHAR)