diff -r 0a4177bbb1c4 -r 18f3ea2e7e6d pidgin/gtkaccount.c --- a/pidgin/gtkaccount.c Sun Sep 26 00:25:14 2021 -0500 +++ b/pidgin/gtkaccount.c Mon Sep 27 20:42:30 2021 -0500 @@ -1572,7 +1572,8 @@ dialog); /* Setup the vbox */ - main_vbox = pidgin_dialog_get_vbox_with_properties(GTK_DIALOG(win), FALSE, 6); + main_vbox = gtk_dialog_get_content_area(GTK_DIALOG(win)); + gtk_box_set_spacing(GTK_BOX(main_vbox), 6); dialog->notebook = notebook = gtk_notebook_new(); gtk_box_pack_start(GTK_BOX(main_vbox), notebook, FALSE, FALSE, 0); @@ -2393,7 +2394,8 @@ accounts_window); /* Setup the vbox */ - vbox = pidgin_dialog_get_vbox_with_properties(GTK_DIALOG(win), FALSE, 12); + vbox = gtk_dialog_get_content_area(GTK_DIALOG(win)); + gtk_box_set_spacing(GTK_BOX(vbox), 12); /* Setup the scrolled window that will contain the list of accounts. */ sw = create_accounts_list(dialog);