[evolution/gnome-3-36] I#947 - ECollectionAccountWizard: Error message hidden when sources' save failed



commit 89e744a35d47d5971da7cc99c2647a31a7e88a30
Author: Milan Crha <mcrha redhat com>
Date:   Thu May 28 12:50:50 2020 +0200

    I#947 - ECollectionAccountWizard: Error message hidden when sources' save failed
    
    Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/947

 src/e-util/e-collection-account-wizard.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/src/e-util/e-collection-account-wizard.c b/src/e-util/e-collection-account-wizard.c
index b85e217ff5..b1121b70cb 100644
--- a/src/e-util/e-collection-account-wizard.c
+++ b/src/e-util/e-collection-account-wizard.c
@@ -2060,16 +2060,21 @@ collection_account_wizard_constructed (GObject *object)
 
        gtk_box_pack_end (vbox, GTK_WIDGET (grid), FALSE, FALSE, 0);
 
-       hbox = GTK_BOX (gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 4));
-       g_object_set (G_OBJECT (hbox),
+       widget = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 4);
+       g_object_set (G_OBJECT (widget),
                "hexpand", FALSE,
                "halign", GTK_ALIGN_START,
                "vexpand", FALSE,
                "valign", GTK_ALIGN_START,
                "margin-start", 12,
+               "margin-top", 24,
                "visible", FALSE,
                NULL);
-       wizard->priv->finish_running_box = GTK_WIDGET (hbox);
+       wizard->priv->finish_running_box = widget;
+
+       gtk_grid_attach (grid, widget, 0, 3, 2, 1);
+
+       hbox = GTK_BOX (widget);
 
        widget = e_spinner_new ();
        g_object_set (G_OBJECT (widget),


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]