summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2023-04-18 18:20:07 +0200
committerMilan Crha <mcrha@redhat.com>2023-04-18 18:20:07 +0200
commit62975b1273cb931b9b2fabb3d4f4e9d3694dca3a (patch)
treefa819775d4c62e9e69d75ff3a713bd6db55610c6
parentbe10522bbdcc961fbf7328d8b0dd08e3d58d4468 (diff)
downloadevolution-62975b1273cb931b9b2fabb3d4f4e9d3694dca3a.tar.gz
I#1812 - Mail: Expand Aliases box in the Account Editor
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/1812
-rw-r--r--src/mail/e-mail-config-identity-page.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mail/e-mail-config-identity-page.c b/src/mail/e-mail-config-identity-page.c
index ba5bf5253c..e2eae53ab5 100644
--- a/src/mail/e-mail-config-identity-page.c
+++ b/src/mail/e-mail-config-identity-page.c
@@ -676,7 +676,7 @@ mail_config_identity_page_constructed (GObject *object)
widget = gtk_grid_new ();
gtk_grid_set_row_spacing (GTK_GRID (widget), 6);
gtk_grid_set_column_spacing (GTK_GRID (widget), 6);
- gtk_box_pack_start (GTK_BOX (main_box), widget, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (main_box), widget, TRUE, TRUE, 0);
gtk_widget_show (widget);
container = widget;
@@ -798,6 +798,10 @@ mail_config_identity_page_constructed (GObject *object)
label = GTK_LABEL (widget);
widget = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
+ g_object_set (G_OBJECT (widget),
+ "valign", GTK_ALIGN_FILL,
+ "vexpand", TRUE,
+ NULL);
gtk_grid_attach (GTK_GRID (container), widget, 1, 4, 2, 1);
gtk_widget_show (widget);