diff options
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 */ |