# HG changeset patch # User Sean Egan # Date 1176577579 0 # Node ID f3559f8d2fc169ece855b9696f30e6f409dd3364 # Parent cbb2ee5464b430ec17a1a430f82e09c151beac8e For a first time user, don't show the buddy list telling him to go to Accounts>Add/Edit, because Accounts->Add/Edit is already open with its own instructions. Show only one window with instructions and then present the Buddy List when you create your first account. diff -r cbb2ee5464b4 -r f3559f8d2fc1 pidgin/gtkaccount.c --- a/pidgin/gtkaccount.c Sat Apr 14 08:42:17 2007 +0000 +++ b/pidgin/gtkaccount.c Sat Apr 14 19:06:19 2007 +0000 @@ -2029,6 +2029,7 @@ gtk_notebook_set_current_page(GTK_NOTEBOOK(accounts_window->notebook),1); set_account(accounts_window->model, &iter, account, global_buddyicon); + gtk_window_present(pidgin_blist_get_default_gtk_blist()->window); } static gboolean diff -r cbb2ee5464b4 -r f3559f8d2fc1 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Sat Apr 14 08:42:17 2007 +0000 +++ b/pidgin/gtkblist.c Sat Apr 14 19:06:19 2007 +0000 @@ -5941,7 +5941,7 @@ purple_prefs_add_bool(PIDGIN_PREFS_ROOT "/blist/show_empty_groups", FALSE); purple_prefs_add_bool(PIDGIN_PREFS_ROOT "/blist/show_idle_time", TRUE); purple_prefs_add_bool(PIDGIN_PREFS_ROOT "/blist/show_offline_buddies", FALSE); - purple_prefs_add_bool(PIDGIN_PREFS_ROOT "/blist/list_visible", TRUE); + purple_prefs_add_bool(PIDGIN_PREFS_ROOT "/blist/list_visible", FALSE); purple_prefs_add_bool(PIDGIN_PREFS_ROOT "/blist/list_maximized", FALSE); purple_prefs_add_string(PIDGIN_PREFS_ROOT "/blist/sort_type", "alphabetical"); purple_prefs_add_int(PIDGIN_PREFS_ROOT "/blist/x", 0);