summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-10-18 22:00:51 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-10-18 22:00:51 +0200
commit775a2befd9a458a6f3641e054f430605318de018 (patch)
treeb8dc3cf32b871062d2f8e86ad05898e228d47929 /src/gui
parente86ef9af6f199d7053f7a13805d73923b19025af (diff)
downloadweechat-775a2befd9a458a6f3641e054f430605318de018.zip
Fix color of comma in hotlist bar item
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/gui-bar-item.c28
1 files changed, 21 insertions, 7 deletions
diff --git a/src/gui/gui-bar-item.c b/src/gui/gui-bar-item.c
index 1d1f00c1f..df4492746 100644
--- a/src/gui/gui-bar-item.c
+++ b/src/gui/gui-bar-item.c
@@ -979,7 +979,7 @@ char *
gui_bar_item_default_hotlist (void *data, struct t_gui_bar_item *item,
struct t_gui_window *window)
{
- char buf[1024], format[32], *buffer_without_name_displayed;
+ char buf[2048], format[32], *buffer_without_name_displayed;
struct t_gui_hotlist *ptr_hotlist;
int numbers_count, names_count, display_name;
@@ -1011,19 +1011,15 @@ gui_bar_item_default_hotlist (void *data, struct t_gui_bar_item *item,
switch (ptr_hotlist->priority)
{
case GUI_HOTLIST_LOW:
- strcat (buf, gui_color_get_custom (gui_color_get_name (CONFIG_COLOR(config_color_status_data_other))));
display_name = ((CONFIG_INTEGER(config_look_hotlist_names_level) & 1) != 0);
break;
case GUI_HOTLIST_MESSAGE:
- strcat (buf, gui_color_get_custom (gui_color_get_name (CONFIG_COLOR(config_color_status_data_msg))));
display_name = ((CONFIG_INTEGER(config_look_hotlist_names_level) & 2) != 0);
break;
case GUI_HOTLIST_PRIVATE:
- strcat (buf, gui_color_get_custom (gui_color_get_name (CONFIG_COLOR(config_color_status_data_private))));
display_name = ((CONFIG_INTEGER(config_look_hotlist_names_level) & 4) != 0);
break;
case GUI_HOTLIST_HIGHLIGHT:
- strcat (buf, gui_color_get_custom (gui_color_get_name (CONFIG_COLOR(config_color_status_data_highlight))));
display_name = ((CONFIG_INTEGER(config_look_hotlist_names_level) & 8) != 0);
break;
default:
@@ -1041,10 +1037,28 @@ gui_bar_item_default_hotlist (void *data, struct t_gui_bar_item *item,
|| (buffer_without_name_displayed[ptr_hotlist->buffer->number - 1] == 0))
{
if (numbers_count > 0)
+ {
+ strcat (buf, GUI_COLOR_CUSTOM_BAR_DELIM);
strcat (buf, ",");
+ }
- numbers_count++;
+ switch (ptr_hotlist->priority)
+ {
+ case GUI_HOTLIST_LOW:
+ strcat (buf, gui_color_get_custom (gui_color_get_name (CONFIG_COLOR(config_color_status_data_other))));
+ break;
+ case GUI_HOTLIST_MESSAGE:
+ strcat (buf, gui_color_get_custom (gui_color_get_name (CONFIG_COLOR(config_color_status_data_msg))));
+ break;
+ case GUI_HOTLIST_PRIVATE:
+ strcat (buf, gui_color_get_custom (gui_color_get_name (CONFIG_COLOR(config_color_status_data_private))));
+ break;
+ case GUI_HOTLIST_HIGHLIGHT:
+ strcat (buf, gui_color_get_custom (gui_color_get_name (CONFIG_COLOR(config_color_status_data_highlight))));
+ break;
+ }
sprintf (buf + strlen (buf), "%d", ptr_hotlist->buffer->number);
+ numbers_count++;
if (display_name)
{
@@ -1069,7 +1083,7 @@ gui_bar_item_default_hotlist (void *data, struct t_gui_bar_item *item,
buffer_without_name_displayed[ptr_hotlist->buffer->number - 1] = 1;
}
- if (strlen (buf) > sizeof (buf) - 32)
+ if (strlen (buf) > sizeof (buf) - 64)
break;
}
}