diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-07-30 06:06:38 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-07-30 06:06:38 +0800 |
commit | 44a36d8abf698889eb8e207afbf0c6c14bc7c8db (patch) | |
tree | 80b4ee13a4be8e10d91f5c9f0f0baa7399b8848c /mail | |
parent | 6cc38b99d610689925d69eba4f4e2b4b940f1c91 (diff) | |
download | gsoc2013-evolution-44a36d8abf698889eb8e207afbf0c6c14bc7c8db.tar.gz gsoc2013-evolution-44a36d8abf698889eb8e207afbf0c6c14bc7c8db.tar.zst gsoc2013-evolution-44a36d8abf698889eb8e207afbf0c6c14bc7c8db.zip |
(request_password): Left-align the check button's
label.
svn path=/trunk/; revision=17637
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-session.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 11f375fbc2..aa43beb3b1 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2002-07-29 Ettore Perazzoli <ettore@ximian.com> + + * mail-session.c (request_password): Left-align the check button's + label. + 2002-07-29 Jeffrey Stedfast <fejj@ximian.com> * mail-account-gui.c (mail_account_gui_new): Get the "Reset diff --git a/mail/mail-session.c b/mail/mail-session.c index 13b8c83856..eebfa04a12 100644 --- a/mail/mail-session.c +++ b/mail/mail-session.c @@ -271,6 +271,7 @@ request_password(struct _pass_msg *m) check = gtk_check_button_new (); check_label = gtk_label_new (""); + gtk_misc_set_alignment (GTK_MISC (check_label), 0.0, 0.5); accel_key = gtk_label_parse_uline (GTK_LABEL (check_label), m->service_url ? _("_Remember this password") : _("_Remember this password for the remainder of this session")); |