changeset 11403:f5b14ad58722

[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 <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 01 Sep 2005 02:46:16 +0000
parents 3b95804caea4
children 677a3862260f
files src/gtkmain.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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();
 	}