From f449bc01e8ca350bd6ed545fa7516ce277099c26 Mon Sep 17 00:00:00 2001 From: Anna Marie Dirks Date: Tue, 27 Mar 2001 20:41:56 +0000 Subject: fixed button placement to comply with gnome standards. 001-03-27 Anna Marie Dirks * gui/e-itip-control.c: fixed button placement to comply with gnome standards. svn path=/trunk/; revision=8983 --- calendar/ChangeLog | 5 +++++ calendar/gui/e-itip-control.c | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 4fc4d88d39..2ac5f276b7 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2001-03-27 Anna Marie Dirks + * gui/e-itip-control.c: fixed button placement to comply + with gnome standards. + + 2001-03-27 Anna Marie Dirks * gui/e-itip-control.glade: fixed spacing and label alignment to comply with gnome standards. Also removed shadows from extraneous diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 668456c13b..5e7df6b35c 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -811,13 +811,13 @@ pstream_load (BonoboPersistStream *ps, const Bonobo_Stream stream, if (rsvp) { GtkWidget *accept_button, *decline_button, *tentative_button; - accept_button = gtk_button_new_with_label (_("Accept")); - decline_button = gtk_button_new_with_label (_("Decline")); - tentative_button = gtk_button_new_with_label (_("Tentative")); + accept_button = gtk_button_new_with_label (_(" Accept ")); + decline_button = gtk_button_new_with_label (_(" Decline ")); + tentative_button = gtk_button_new_with_label (_(" Tentative ")); - gtk_box_pack_start (GTK_BOX (priv->button_box), accept_button, FALSE, FALSE, 3); gtk_box_pack_start (GTK_BOX (priv->button_box), decline_button, FALSE, FALSE, 3); - gtk_box_pack_start (GTK_BOX (priv->button_box), tentative_button, FALSE, FALSE, 3); + gtk_box_pack_end (GTK_BOX (priv->button_box), accept_button, FALSE, FALSE, 3); + gtk_box_pack_end (GTK_BOX (priv->button_box), tentative_button, FALSE, FALSE, 3); gtk_signal_connect (GTK_OBJECT (accept_button), "clicked", GTK_SIGNAL_FUNC (accept_button_clicked_cb), priv); @@ -827,8 +827,8 @@ pstream_load (BonoboPersistStream *ps, const Bonobo_Stream stream, GTK_SIGNAL_FUNC (decline_button_clicked_cb), priv); gtk_widget_show (accept_button); - gtk_widget_show (decline_button); gtk_widget_show (tentative_button); + gtk_widget_show (decline_button); } } -- cgit v1.2.3