From f4db10997283c2455a81e4d6342492aa902ad27b Mon Sep 17 00:00:00 2001 From: Johnny Jacob Date: Mon, 26 May 2008 11:20:45 +0000 Subject: Fix for Bug 496476 : Let the plugin configure widgets expand (resize). svn path=/trunk/; revision=35549 --- plugins/attachment-reminder/attachment-reminder.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'plugins/attachment-reminder/attachment-reminder.c') diff --git a/plugins/attachment-reminder/attachment-reminder.c b/plugins/attachment-reminder/attachment-reminder.c index 506bd53669..cfaa2a171c 100644 --- a/plugins/attachment-reminder/attachment-reminder.c +++ b/plugins/attachment-reminder/attachment-reminder.c @@ -55,7 +55,6 @@ typedef struct { GtkWidget *clue_add; GtkWidget *clue_edit; GtkWidget *clue_remove; - GtkWidget *clue_container; GtkListStore *store; } UIData; @@ -504,11 +503,10 @@ e_plugin_lib_get_configure_widget (EPlugin *epl) } /* Add the list here */ - ui->clue_container = glade_xml_get_widget (ui->xml, "clue_container"); hbox = gtk_vbox_new (FALSE, 0); - gtk_box_pack_start (GTK_BOX (hbox), glade_xml_get_widget (ui->xml, "reminder_configuration_box"), FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (hbox), glade_xml_get_widget (ui->xml, "reminder_configuration_box"), TRUE, TRUE, 0); /* to let free data properly on destroy of configuration widget */ g_object_set_data_full (G_OBJECT (hbox), "myui-data", ui, destroy_ui_data); -- cgit