comparison src/conversation.c @ 6405:96de6d9eb422

[gaim-migrate @ 6910] Added a new unseen type: GAIM_CONV_UNSEEN_EVENT. Now window closing, timing out, logins, logouts, etc. (any of those black bold messages) grey the tab instead of the tab looking like someone talked in it. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 07 Aug 2003 01:09:38 +0000
parents 01963a303f43
children ba0b99a72be2
comparison
equal deleted inserted replaced
6404:db32fee4fa69 6405:96de6d9eb422
1484 1484
1485 if (gaim_window_get_active_conversation(win) != conv) { 1485 if (gaim_window_get_active_conversation(win) != conv) {
1486 if ((flags & WFLAG_NICK) == WFLAG_NICK || 1486 if ((flags & WFLAG_NICK) == WFLAG_NICK ||
1487 gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_NICK) 1487 gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_NICK)
1488 unseen = GAIM_UNSEEN_NICK; 1488 unseen = GAIM_UNSEEN_NICK;
1489 else if ((flags & WFLAG_SYSTEM) == WFLAG_SYSTEM &&
1490 gaim_conversation_get_unseen(conv) != GAIM_UNSEEN_TEXT)
1491 unseen = GAIM_UNSEEN_EVENT;
1489 else 1492 else
1490 unseen = GAIM_UNSEEN_TEXT; 1493 unseen = GAIM_UNSEEN_TEXT;
1491 } 1494 }
1492 else 1495 else
1493 unseen = GAIM_UNSEEN_NONE; 1496 unseen = GAIM_UNSEEN_NONE;