From b16515893aeebd0dbd1623c6928f467cc0a17b63 Mon Sep 17 00:00:00 2001 From: Marco Barisione Date: Mon, 29 Jul 2013 08:04:15 +0100 Subject: account-widget: make the buttons look like normal dialog buttons https://bugzilla.gnome.org/show_bug.cgi?id=699492 --- tp-account-widgets/tpaw-account-widget.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tp-account-widgets/tpaw-account-widget.c b/tp-account-widgets/tpaw-account-widget.c index f8b82e39f..4b3131881 100644 --- a/tp-account-widgets/tpaw-account-widget.c +++ b/tp-account-widgets/tpaw-account-widget.c @@ -2010,9 +2010,13 @@ do_constructed (GObject *obj) account_manager_ready_cb, self); /* handle apply and cancel button */ - self->priv->hbox_buttons = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 3); - - gtk_box_set_homogeneous (GTK_BOX (self->priv->hbox_buttons), TRUE); + self->priv->hbox_buttons = gtk_button_box_new (GTK_ORIENTATION_HORIZONTAL); + gtk_button_box_set_layout (GTK_BUTTON_BOX (self->priv->hbox_buttons), + GTK_BUTTONBOX_END); + /* Hard code the default spacing as we cannot easily get this property + * as the widget is not in a GtkDialog yet (and it could end up packed + * in a non-GtkDialog window anyway */ + gtk_box_set_spacing (GTK_BOX (self->priv->hbox_buttons), 6); self->priv->cancel_button = gtk_button_new_from_stock (GTK_STOCK_CLOSE); -- cgit v1.2.3