diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-07-13 20:32:01 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2020-07-13 20:39:59 +0200 |
commit | 98c1488dad675583cf8d851e1b6584b258e3b6e3 (patch) | |
tree | 7ac9d934bc41f56a1738a5b138a58089b2fe5ac7 | |
parent | a0f941e7ae0e6935152e5ce42bfb8b45d224c25d (diff) |
weechat: Online nicks should be 'default' color
-rw-r--r-- | weechat/tomsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weechat/tomsg.c b/weechat/tomsg.c index 374ae45..676586e 100644 --- a/weechat/tomsg.c +++ b/weechat/tomsg.c @@ -241,7 +241,7 @@ static void push_net_callback(int fd,struct net_response res,void *payload){ // ok } else if(res.type==NET_ONLINE){ debugf(" NET_ONLINE with username='%s' num='%" PRIi64 "'\n",res.online.username,res.online.num); - const char *color=res.online.num>0 ? "weechat.color.chat_nick" : "weechat.color.nicklist_away"; + const char *color=res.online.num>0 ? "default" : "weechat.color.nicklist_away"; for(i64 i=0;i<conn->nrooms;i++){ struct t_gui_nick *nickp=weechat_nicklist_search_nick( conn->rooms[i]->buffer,conn->rooms[i]->buffer_nickgroup,res.online.username); |