# HG changeset patch # User Christian Hammond # Date 1054547299 0 # Node ID b596002ff81e80ad018af3347644580d650f69b0 # Parent 1709a545a7bd8c2fcc939c3260070589dc81043e [gaim-migrate @ 6075] There's a big spider crawling up my monitor ... Oh, and the weirdo things with the disclosure widget no longer happen. committer: Tailor Script diff -r 1709a545a7bd -r b596002ff81e src/gtkaccount.c --- a/src/gtkaccount.c Mon Jun 02 09:44:42 2003 +0000 +++ b/src/gtkaccount.c Mon Jun 02 09:48:19 2003 +0000 @@ -505,9 +505,7 @@ dialog->prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(dialog->plugin); - GAIM_DIALOG(win); - dialog->window = win; - + dialog->window = win = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_role(GTK_WINDOW(win), "account"); if (type == ADD_ACCOUNT_DIALOG) @@ -515,6 +513,8 @@ else gtk_window_set_title(GTK_WINDOW(win), _("Modify Account")); + gtk_window_set_resizable(GTK_WINDOW(win), FALSE); + gtk_container_set_border_width(GTK_CONTAINER(win), 12); #if 0 @@ -540,7 +540,6 @@ /* Setup the box that the disclosure will cover. */ dbox = gtk_vbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), dbox, FALSE, FALSE, 0); - gtk_widget_show(dbox); gaim_disclosure_set_container(GAIM_DISCLOSURE(disclosure), dbox);