diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-11-11 19:25:46 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-11-11 19:27:57 -0500 |
commit | 241dd69b081779a77718763561a779cdffcaf11f (patch) | |
tree | c9ee1ac451506f8b17efbf1b5b98cd97fe19aee5 /src/common/hexchat.c | |
parent | 539949973c484f14d40f1886d67ec09df057315c (diff) |
Further tab color improvements
- Combine the three properties into a single one - Finally fully fix the handling with plugins handling events TODO: Look into lastact handling of these, seems wrong
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r-- | src/common/hexchat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index 64fd351e..487c96f4 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -126,11 +126,11 @@ lastact_update(session *sess) int newidx = LACT_NONE; int dia = (sess->type == SESS_DIALOG); - if (sess->nick_said) + if (sess->tab_state & TAB_STATE_NEW_HILIGHT) newidx = dia? LACT_QUERY_HI: LACT_CHAN_HI; - else if (sess->msg_said) + else if (sess->tab_state & TAB_STATE_NEW_MSG) newidx = dia? LACT_QUERY: LACT_CHAN; - else if (sess->new_data) + else if (sess->tab_state & TAB_STATE_NEW_DATA) newidx = dia? LACT_QUERY: LACT_CHAN_DATA; /* If already first at the right position, just return */ |