1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 02:33:12 +02:00

core: fix reset of attributes between nick colors in /color buffer

This commit is contained in:
Sébastien Helleu
2014-05-22 20:46:14 +02:00
parent 4ba20c90da
commit 838a71cceb
+4 -2
View File
@@ -907,7 +907,8 @@ gui_color_buffer_display ()
else
{
snprintf (str_color, sizeof (str_color),
"%c%c%02d %s",
"%c %c%c%02d%s",
GUI_COLOR_RESET_CHAR,
GUI_COLOR_COLOR_CHAR,
GUI_COLOR_FG_CHAR,
i,
@@ -947,7 +948,8 @@ gui_color_buffer_display ()
else
{
snprintf (str_color, sizeof (str_color),
"%s %s",
"%c %s%s",
GUI_COLOR_RESET_CHAR,
gui_color_get_custom (items[i]),
items[i]);
}