From a5e19e32856ec8a09ff1316e9601b34f02bdcdf9 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 16 Nov 2003 23:23:29 +0000 Subject: [PATCH] fix, try #2 git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3160 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/window-activity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/core/window-activity.c b/src/fe-common/core/window-activity.c index 5197e1a0..eab2c02f 100644 --- a/src/fe-common/core/window-activity.c +++ b/src/fe-common/core/window-activity.c @@ -89,7 +89,7 @@ static void sig_hilight_text(TEXT_DEST_REC *dest, const char *msg) DATA_LEVEL_MSG : DATA_LEVEL_TEXT; } - if ((dest->level & MSGLEVEL_HILIGHT) == 0) { + if ((dest->level & MSGLEVEL_HILIGHT) == 0 && dest->target != NULL) { /* check for both target and tag/target */ if (hide_target_activity(data_level, dest->target)) return;