# HG changeset patch # User Mark Doliner # Date 1125542776 0 # Node ID f5b14ad58722a795607c3574f14ed45a928cc700 # Parent 3b95804caea4eb38c5b2a6d983c076cd3cfc819b [gaim-migrate @ 13638] We used to show the accounts list if we didn't have any accounts. Now we show it if we don't have any enabled accounts (or if we have no accounts at all). committer: Tailor Script diff -r 3b95804caea4 -r f5b14ad58722 src/gtkmain.c --- a/src/gtkmain.c Thu Sep 01 02:32:14 2005 +0000 +++ b/src/gtkmain.c Thu Sep 01 02:46:16 2005 +0000 @@ -678,7 +678,8 @@ gaim_accounts_restore_previous_statuses(); } - if (opt_acct || (gaim_accounts_get_all() == NULL)) { + if (opt_acct || (gaim_accounts_get_all_active() == NULL)) + { gaim_gtk_accounts_window_show(); }