[evolution] ECompEditor: Change packing of the Organizer combo



commit 6397879f6f73fa5283251e159699778a4b6b9f9f
Author: Milan Crha <mcrha redhat com>
Date:   Tue May 10 21:31:53 2022 +0200

    ECompEditor: Change packing of the Organizer combo
    
    Let it not use more horizontal space than it really needs. That can
    make more space for the Calendar combo.
    
    Related to https://gitlab.gnome.org/GNOME/evolution/-/issues/1901

 src/calendar/gui/e-comp-editor-page-general.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/calendar/gui/e-comp-editor-page-general.c b/src/calendar/gui/e-comp-editor-page-general.c
index 85e4425bcc..2d8f2d1276 100644
--- a/src/calendar/gui/e-comp-editor-page-general.c
+++ b/src/calendar/gui/e-comp-editor-page-general.c
@@ -1332,13 +1332,13 @@ ecep_general_constructed (GObject *object)
        widget = e_ellipsized_combo_box_text_new (FALSE);
        e_ellipsized_combo_box_text_set_max_natural_width (E_ELLIPSIZED_COMBO_BOX_TEXT (widget), 100);
        g_object_set (G_OBJECT (widget),
-               "hexpand", TRUE,
+               "hexpand", FALSE,
                "halign", GTK_ALIGN_FILL,
                "vexpand", FALSE,
                "valign", GTK_ALIGN_START,
                "width-request", 100,
                NULL);
-       gtk_box_pack_start (GTK_BOX (page_general->priv->organizer_hbox), widget, TRUE, TRUE, 0);
+       gtk_box_pack_start (GTK_BOX (page_general->priv->organizer_hbox), widget, FALSE, FALSE, 0);
        gtk_widget_show (widget);
 
        page_general->priv->organizer_combo_box = widget;


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