# HG changeset patch # User Mark Doliner # Date 1075581185 0 # Node ID 36f8dcea96482a0de04a17056a845d4a684941b4 # Parent 90a1fbd2493dede7c463f69d5e1aae6407189bcc [gaim-migrate @ 8913] Luke pointed out that chat's don't have icons. I pointed out that I'm dumb. committer: Tailor Script diff -r 90a1fbd2493d -r 36f8dcea9648 src/gtkconv.c --- a/src/gtkconv.c Sat Jan 31 04:40:24 2004 +0000 +++ b/src/gtkconv.c Sat Jan 31 20:33:05 2004 +0000 @@ -2568,6 +2568,9 @@ g_return_if_fail(conv != NULL); + if (gaim_conversation_get_type(conv) != GAIM_CONV_IM) + return; + gtkconv = GAIM_GTK_CONVERSATION(conv); stop_anim(NULL, conv); @@ -2611,7 +2614,8 @@ * We pause icons when they are not visible. If this icon should * be animated then start it back up again.lll */ - if (gtkconv->u.im->animate) + if ((gaim_conversation_get_type(conv) == GAIM_CONV_IM) && + (gtkconv->u.im->animate)) start_anim(NULL, conv); gtk_widget_grab_focus(gtkconv->entry);