comparison src/gtkmain.c @ 12011:b4d7d6dbc95c

[gaim-migrate @ 14304] Show the blist earlier in the init process. I had moved this farther down a week or so ago because the gtkstatusbox wasn't show the correct status, otherwise. But all that seems fixed now. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 08 Nov 2005 23:58:10 +0000
parents f41037708e62
children e67993da8a22
comparison
equal deleted inserted replaced
12010:b41b75f709e4 12011:b4d7d6dbc95c
654 if (opt_config_dir_arg != NULL) { 654 if (opt_config_dir_arg != NULL) {
655 g_free(opt_config_dir_arg); 655 g_free(opt_config_dir_arg);
656 opt_config_dir_arg = NULL; 656 opt_config_dir_arg = NULL;
657 } 657 }
658 658
659 /*
660 * We want to show the blist early in the init process so the
661 * user feels warm and fuzzy (not cold and prickley).
662 */
663 gaim_blist_show();
664
659 if (gaim_prefs_get_bool("/gaim/gtk/debug/enabled")) 665 if (gaim_prefs_get_bool("/gaim/gtk/debug/enabled"))
660 gaim_gtk_debug_window_show(); 666 gaim_gtk_debug_window_show();
661 667
662 if (opt_login) { 668 if (opt_login) {
663 dologin_ret = dologin_named(opt_login_arg); 669 dologin_ret = dologin_named(opt_login_arg);
683 { 689 {
684 /* Everything is good to go--sign on already */ 690 /* Everything is good to go--sign on already */
685 gaim_accounts_restore_previous_statuses(); 691 gaim_accounts_restore_previous_statuses();
686 } 692 }
687 693
688 gaim_blist_show();
689
690 if (gaim_accounts_get_all_active() == NULL) 694 if (gaim_accounts_get_all_active() == NULL)
691 { 695 {
692 gaim_gtk_accounts_window_show(); 696 gaim_gtk_accounts_window_show();
693 } 697 }
694 698