# HG changeset patch # User Sean Egan # Date 1015549118 0 # Node ID 5f6ddad12b1d8648045c06e5d633e05fd47b5f7b # Parent 18f0e61a6cafc7e99355e869576d11021e0b514e [gaim-migrate @ 3035] Typing notification will go away if you're not using tabs (I don't know why you're not using tabs... they're so cool) committer: Tailor Script diff -r 18f0e61a6caf -r 5f6ddad12b1d ChangeLog --- a/ChangeLog Thu Mar 07 20:57:16 2002 +0000 +++ b/ChangeLog Fri Mar 08 00:58:38 2002 +0000 @@ -11,6 +11,7 @@ * Numerous bugfixes * Yahoo! will tell you when your buddies are playing Yahoo! games and give you the ability to join them + * Yahoo! can receive offline messages version 0.53 (02/28/2002): * Updated Polish Translation (thanks Przemyslaw Sulek) diff -r 18f0e61a6caf -r 5f6ddad12b1d src/conversation.c --- a/src/conversation.c Thu Mar 07 20:57:16 2002 +0000 +++ b/src/conversation.c Fri Mar 08 00:58:38 2002 +0000 @@ -1699,6 +1699,8 @@ if ((c->is_chat && (chat_options & OPT_CHAT_POPUP)) || (!c->is_chat && (im_options & OPT_IM_POPUP))) gdk_window_show(c->window->window); + if (flags & WFLAG_RECV) + reset_typing(g_strdup(c->name)); /* tab highlighting */ if (c->is_chat && !(chat_options & OPT_CHAT_ONE_WINDOW)) /* if chat but not tabbed chat */ @@ -1737,7 +1739,7 @@ GList *ws = (c->is_chat ? chats : conversations); GtkWidget *label = gtk_notebook_get_tab_label(notebook, gtk_notebook_get_nth_page(notebook, - offs + g_list_index(ws, c))); + offs + g_list_index(ws, c))); GtkStyle *style; style = gtk_style_new(); if (!GTK_WIDGET_REALIZED(label)) @@ -1760,8 +1762,6 @@ gtk_widget_set_style(label, style); gtk_style_unref(style); } - if (flags & WFLAG_RECV) - reset_typing(g_strdup(c->name)); } void update_progress(struct conversation *c, float percent) {