when packing the remove list into its container, use `TRUE, TRUE' instead

2001-04-23  John Harper  <jsh@eazel.com>

	* components/news/nautilus-news.c (set_up_edit_widgets): when
	packing the remove list into its container, use `TRUE, TRUE'
	instead of `FALSE, FALSE'. This makes the `Remove a site' list
	expand properly
This commit is contained in:
John Harper 2001-04-23 21:33:14 +00:00 committed by John Harper
parent e88ade1a3a
commit ccd1ede336
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2001-04-23 John Harper <jsh@eazel.com>
* components/news/nautilus-news.c (set_up_edit_widgets): when
packing the remove list into its container, use `TRUE, TRUE'
instead of `FALSE, FALSE'. This makes the `Remove a site' list
expand properly
2001-04-23 Ramiro Estrugo <ramiro@eazel.com>
* libnautilus-extensions/nautilus-preferences-box.c:

View file

@ -1865,7 +1865,7 @@ set_up_edit_widgets (News *news, GtkWidget *container)
/* allocate the remove widgets */
make_remove_widgets (news, temp_vbox);
gtk_box_pack_start (GTK_BOX (expand_box), temp_vbox, FALSE, FALSE, 0);
gtk_box_pack_start (GTK_BOX (expand_box), temp_vbox, TRUE, TRUE, 0);
/* add the button box at the bottom with a cancel button */
button_box = add_command_buttons (news, _("Cancel"), FALSE);