# HG changeset patch # User Rob Flynn # Date 976823170 0 # Node ID 8947583de4a1a45a46e99fa2c3416fbb64a5ba66 # Parent b319e507a36a663dbfe66b4c38ffed22e68e90fd [gaim-migrate @ 1289] The progress bar on signon works :-D committer: Tailor Script diff -r b319e507a36a -r 8947583de4a1 plugins/msn/msn.c --- a/plugins/msn/msn.c Thu Dec 14 19:40:47 2000 +0000 +++ b/plugins/msn/msn.c Thu Dec 14 19:46:10 2000 +0000 @@ -490,6 +490,8 @@ g_snprintf(buf, sizeof(buf), "Signon: %s", gc->username); set_login_progress(gc, 2, buf); + while (gtk_events_pending()) + gtk_main_iteration(); /* This is where we will attempt to sign on */ g_snprintf(buf, 4096, "VER %d %s\n", trId, mdata->protocol); @@ -603,6 +605,9 @@ } set_login_progress(gc, 3, "Getting Config"); + while (gtk_events_pending()) + gtk_main_iteration(); + g_snprintf(buf, 4096, "SYN %d 0\n", trId); write(mdata->fd, buf, strlen(buf));