[empathy] account-widget: make the buttons look like normal dialog	buttons
- From: Marco Barisione <mbari src gnome org>
 
- To: commits-list gnome org
 
- Cc: 
 
- Subject: [empathy] account-widget: make the buttons look like normal dialog	buttons
 
- Date: Tue, 20 Aug 2013 11:23:20 +0000 (UTC)
 
commit b16515893aeebd0dbd1623c6928f467cc0a17b63
Author: Marco Barisione <marco barisione collabora co uk>
Date:   Mon Jul 29 08:04:15 2013 +0100
    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 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/tp-account-widgets/tpaw-account-widget.c b/tp-account-widgets/tpaw-account-widget.c
index f8b82e3..4b31318 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);
 
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]