# HG changeset patch # User Luke Schierer # Date 1071707486 0 # Node ID 438b4667db0da6f3eeaea2dc5d9d583255ea3410 # Parent 7e1bb4deca24254d59694b44b2f75d18d577f608 [gaim-migrate @ 8550] "Really simple patch to make the "Cancel All" button in the connection progress dialog only cancel connections that are in progress. If an account has already connected successfully, don't disconnect it." -- Daniel Atallah (datallah) i tend to agree this is more intuitive. committer: Tailor Script diff -r 7e1bb4deca24 -r 438b4667db0d src/gtkconn.c --- a/src/gtkconn.c Wed Dec 17 09:33:05 2003 +0000 +++ b/src/gtkconn.c Thu Dec 18 00:31:26 2003 +0000 @@ -73,7 +73,8 @@ while (m) { meter = m->data; - cancel_signon(NULL, meter); + if (gaim_connection_get_state(meter->account->gc) != GAIM_CONNECTED) + cancel_signon(NULL, meter); m = m->next; } }