From: Mathieu Trudel-Lapierre <mathieu.trudel-lapierre@canonical.com>
Subject: Fix sizing so that the mailbox chooser widgets are usable

The mailbox chooseage dialog was not resizable, which was already a big pain
since the top part (General section) to choose the type of mailbox would
also expand to fill the space of the window.

Switch these two settings to no do vexpand on the top section, and allow
the window to be resizable.

---
 src/mn-mailbox-properties-dialog.gob |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: b/src/mn-mailbox-properties-dialog.gob
===================================================================
--- a/src/mn-mailbox-properties-dialog.gob
+++ b/src/mn-mailbox-properties-dialog.gob
@@ -165,7 +165,8 @@ class MN:Mailbox:Properties:Dialog from
 				  "delay_scale", &selfp->delay_scale,
 				  NULL);
 
-    gtk_window_set_resizable(GTK_WINDOW(self), FALSE);
+    gtk_window_set_resizable(GTK_WINDOW(self), TRUE);
+    gtk_widget_set_vexpand(self->general_vbox, FALSE);
 
     if (selfp->dialog_parent)
       gtk_window_set_transient_for(GTK_WINDOW(self), selfp->dialog_parent);
