diff options
author | Anna Marie Dirks <anna@ximian.com> | 2001-03-28 04:41:56 +0800 |
---|---|---|
committer | Anna Dirks <anna@src.gnome.org> | 2001-03-28 04:41:56 +0800 |
commit | f449bc01e8ca350bd6ed545fa7516ce277099c26 (patch) | |
tree | 5a6a7b727d50b9c33a44c7a24f1ccc214340d35f | |
parent | 385e0d6441e21e06063710f476ea9f3212041b3f (diff) | |
download | gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.gz gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.bz2 gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.lz gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.xz gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.zst gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.zip |
fixed button placement to comply with gnome standards.
001-03-27 Anna Marie Dirks <anna@ximian.com>
* gui/e-itip-control.c: fixed button placement to comply
with gnome standards.
svn path=/trunk/; revision=8983
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | 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,4 +1,9 @@ 2001-03-27 Anna Marie Dirks <anna@ximian.com> + * gui/e-itip-control.c: fixed button placement to comply + with gnome standards. + + +2001-03-27 Anna Marie Dirks <anna@ximian.com> * gui/e-itip-control.glade: fixed spacing and label alignment to comply with gnome standards. Also removed shadows from extraneous scrolled windows to avoid bevelitous. There are many more changes 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); } } |