comparison src/gtkaccount.c @ 11784:141368559673

[gaim-migrate @ 14075] I don't like showing the "add an account!" dialog for new users that have 0 accounts. I think showing 3 windows when a new users starts Gaim is too many. It's distracting. It should hopefully be obvious that they need to click the "add" button to get started. If not, someone should modify the accounts list to show a helpful message, like "Click the add button to get started" committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 24 Oct 2005 02:43:19 +0000
parents a25be0e70a67
children 1c53ff1e7a0d
comparison
equal deleted inserted replaced
11783:b75d8a37e603 11784:141368559673
2469 dialog, GAIM_CALLBACK(signed_on_off_cb), dialog); 2469 dialog, GAIM_CALLBACK(signed_on_off_cb), dialog);
2470 gaim_signal_connect(gaim_connections_get_handle(), "signed-off", 2470 gaim_signal_connect(gaim_connections_get_handle(), "signed-off",
2471 dialog, GAIM_CALLBACK(signed_on_off_cb), dialog); 2471 dialog, GAIM_CALLBACK(signed_on_off_cb), dialog);
2472 2472
2473 gtk_widget_show(win); 2473 gtk_widget_show(win);
2474
2475 /* Display the add account window if no accounts exist. */
2476 if (gaim_accounts_get_all() == NULL)
2477 gaim_gtk_account_dialog_show(GAIM_GTK_ADD_ACCOUNT_DIALOG, NULL);
2478 } 2474 }
2479 2475
2480 void 2476 void
2481 gaim_gtk_accounts_window_hide(void) 2477 gaim_gtk_accounts_window_hide(void)
2482 { 2478 {