From 66853d9715431bb0ee7f595a79ccb03f98f141f3 Mon Sep 17 00:00:00 2001 From: Heiki Ojasild Date: Thu, 9 May 2013 21:11:58 +0000 Subject: Add option to support away tracking regardless of channel size As there is option to disable away tracking, it would make sense to treat channel size limit of 0 as infinity for away tracking purposes. These changes attempt to implement this. --- src/common/hexchat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/common/hexchat.c b/src/common/hexchat.c index cef391d2..72b97e3a 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -304,7 +304,7 @@ away_check (void) GSList *list; int full, sent, loop = 0; - if (!prefs.hex_away_track || prefs.hex_away_size_max < 1) + if (!prefs.hex_away_track) return 1; doover: @@ -319,7 +319,7 @@ doover: if (sess->server->connected && sess->type == SESS_CHANNEL && sess->channel[0] && - sess->total <= prefs.hex_away_size_max) + (sess->total <= prefs.hex_away_size_max || !prefs.hex_away_size_max)) { if (!sess->done_away_check) { -- cgit 1.4.1 From 2f1f2c6a8573e3022fe03a563acdd59b6617de1b Mon Sep 17 00:00:00 2001 From: Repentinus Date: Thu, 9 May 2013 23:04:46 +0000 Subject: Added support for marking nicks that are away in different colour when away_size_max = 0, but tracking enabled. --- src/fe-gtk/userlistgui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/fe-gtk/userlistgui.c b/src/fe-gtk/userlistgui.c index c2f2a462..530d213f 100644 --- a/src/fe-gtk/userlistgui.c +++ b/src/fe-gtk/userlistgui.c @@ -320,7 +320,7 @@ fe_userlist_rehash (session *sess, struct User *user) if (!iter) return; - if (prefs.hex_away_track && prefs.hex_away_size_max && user->away) + if (prefs.hex_away_track && user->away) nick_color = COL_AWAY; else if (prefs.hex_gui_ulist_color) nick_color = text_color_of(user->nick); @@ -340,7 +340,7 @@ fe_userlist_insert (session *sess, struct User *newuser, int row, int sel) char *nick; int nick_color = 0; - if (prefs.hex_away_track && prefs.hex_away_size_max && newuser->away) + if (prefs.hex_away_track && newuser->away) nick_color = COL_AWAY; else if (prefs.hex_gui_ulist_color) nick_color = text_color_of(newuser->nick); -- cgit 1.4.1