diff options
author | Johnny Jacob <jjohnny@src.gnome.org> | 2008-05-26 19:20:45 +0800 |
---|---|---|
committer | Johnny Jacob <jjohnny@src.gnome.org> | 2008-05-26 19:20:45 +0800 |
commit | f4db10997283c2455a81e4d6342492aa902ad27b (patch) | |
tree | e6ab4d2aae18ceef6d17143edda0471332f59465 /plugins/attachment-reminder/attachment-reminder.c | |
parent | f0c1d53ccf969bb46397ba1602f7b6cb36640e95 (diff) | |
download | gsoc2013-evolution-f4db10997283c2455a81e4d6342492aa902ad27b.tar.gz gsoc2013-evolution-f4db10997283c2455a81e4d6342492aa902ad27b.tar.zst gsoc2013-evolution-f4db10997283c2455a81e4d6342492aa902ad27b.zip |
Fix for Bug 496476 : Let the plugin configure widgets expand (resize).
svn path=/trunk/; revision=35549
Diffstat (limited to 'plugins/attachment-reminder/attachment-reminder.c')
-rw-r--r-- | plugins/attachment-reminder/attachment-reminder.c | 4 |
1 files changed, 1 insertions, 3 deletions
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); |