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/outbound.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/outbound.c')
-rw-r--r-- | src/common/outbound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index 3c717526..6dd42fb4 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -631,7 +631,7 @@ cmd_clear (struct session *sess, char *tbuf, char *word[], char *word_eol[]) while (list) { sess = list->data; - if (!sess->nick_said) + if (!(sess->tab_state & TAB_STATE_NEW_HILIGHT)) fe_text_clear (list->data, 0); list = list->next; } |