comparison src/gtkconv.c @ 12806:ebef62bc831a

[gaim-migrate @ 15153] Sadrul fixed the docklet-wouldn't-stop-blinking bug I was hitting after his last patch. Thanks, Sadrul. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 10 Jan 2006 05:41:20 +0000
parents d24bc9737de8
children ff267281e882
comparison
equal deleted inserted replaced
12805:2415368bdd1d 12806:ebef62bc831a
6503 GAIM_CALLBACK(update_chat), NULL); 6503 GAIM_CALLBACK(update_chat), NULL);
6504 gaim_signal_connect(gaim_conversations_get_handle(), "chat-joined", handle, 6504 gaim_signal_connect(gaim_conversations_get_handle(), "chat-joined", handle,
6505 GAIM_CALLBACK(update_chat), NULL); 6505 GAIM_CALLBACK(update_chat), NULL);
6506 gaim_signal_connect(gaim_conversations_get_handle(), "chat-topic-changed", handle, 6506 gaim_signal_connect(gaim_conversations_get_handle(), "chat-topic-changed", handle,
6507 GAIM_CALLBACK(update_chat_topic), NULL); 6507 GAIM_CALLBACK(update_chat_topic), NULL);
6508 gaim_signal_connect(gaim_conversations_get_handle(), "conversation-updated", handle, 6508 gaim_signal_connect_priority(gaim_conversations_get_handle(), "conversation-updated", handle,
6509 GAIM_CALLBACK(gaim_gtkconv_updated), NULL); 6509 GAIM_CALLBACK(gaim_gtkconv_updated), NULL,
6510 GAIM_SIGNAL_PRIORITY_LOWEST);
6510 } 6511 }
6511 6512
6512 void 6513 void
6513 gaim_gtk_conversations_uninit(void) 6514 gaim_gtk_conversations_uninit(void)
6514 { 6515 {
6701 6702
6702 if (state > gtkconv->unseen_state) 6703 if (state > gtkconv->unseen_state)
6703 gtkconv->unseen_state = state; 6704 gtkconv->unseen_state = state;
6704 } 6705 }
6705 6706
6706 gaim_gtkconv_update_fields(gtkconv->active_conv, GAIM_GTKCONV_COLORIZE_TITLE); 6707 gaim_conversation_update(gtkconv->active_conv, GAIM_CONV_UPDATE_UNSEEN);
6707 } 6708 }
6708 6709
6709 /* 6710 /*
6710 * When a conversation window is focused, we know the user 6711 * When a conversation window is focused, we know the user
6711 * has looked at it so we know there are no longer unseen 6712 * has looked at it so we know there are no longer unseen