diff options
author | William Jon McCann <mccann@jhu.edu> | 2004-06-04 10:11:38 +0800 |
---|---|---|
committer | William Jon McCann <mccann@src.gnome.org> | 2004-06-04 10:11:38 +0800 |
commit | f9d996db29d5e8a9697409b1dbe25b99df0a1387 (patch) | |
tree | 5dde9ebf1768123394d16407009cc6d3915ad577 /mail | |
parent | a791a98b0576c1a54f86850dd64366272eaa8b89 (diff) | |
download | gsoc2013-evolution-f9d996db29d5e8a9697409b1dbe25b99df0a1387.tar.gz gsoc2013-evolution-f9d996db29d5e8a9697409b1dbe25b99df0a1387.tar.zst gsoc2013-evolution-f9d996db29d5e8a9697409b1dbe25b99df0a1387.zip |
Don't pack entry and checkbox widgets directly into the dialog vbox so
2004-06-03 William Jon McCann <mccann@jhu.edu>
* mail-session.c (request_password): Don't pack entry and checkbox
widgets directly into the dialog vbox so that they line up
correctly with the action area buttons.
svn path=/trunk/; revision=26206
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-session.c | 11 |
2 files changed, 15 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index f15db97a77..712cd04e5d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2004-06-03 William Jon McCann <mccann@jhu.edu> + + * mail-session.c (request_password): Don't pack entry and checkbox + widgets directly into the dialog vbox so that they line up + correctly with the action area buttons. + 2004-06-02 Not Zed <NotZed@Ximian.com> * mail-component.c (mc_add_local_store_done): put this back in, diff --git a/mail/mail-session.c b/mail/mail-session.c index d4c63fdd30..dc36dbc7c7 100644 --- a/mail/mail-session.c +++ b/mail/mail-session.c @@ -32,6 +32,7 @@ #include <gtk/gtkmessagedialog.h> #include <gtk/gtktogglebutton.h> #include <gtk/gtkbox.h> +#include <gtk/gtkvbox.h> #include <gtk/gtkcheckbutton.h> #include <gconf/gconf-client.h> @@ -253,6 +254,7 @@ static void request_password (struct _pass_msg *m) { EAccount *mca = NULL; + GtkWidget *vbox; char *title; /* If we already have a password_dialog up, save this request till later */ @@ -276,11 +278,16 @@ request_password (struct _pass_msg *m) password_dialog = (GtkDialog *)e_error_new(NULL, "mail:ask-session-password", m->prompt, NULL); gtk_window_set_title (GTK_WINDOW (password_dialog), title); g_free (title); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_widget_show (vbox); + gtk_box_pack_start (GTK_BOX (GTK_DIALOG (password_dialog)->vbox), vbox, TRUE, FALSE, 0); + gtk_container_set_border_width((GtkContainer *)vbox, 6); m->entry = gtk_entry_new (); gtk_entry_set_visibility ((GtkEntry *) m->entry, !(m->flags & CAMEL_SESSION_PASSWORD_SECRET)); g_signal_connect (m->entry, "activate", G_CALLBACK (pass_activate), password_dialog); - gtk_box_pack_start (GTK_BOX (GTK_DIALOG (password_dialog)->vbox), m->entry, TRUE, FALSE, 3); + gtk_box_pack_start (GTK_BOX (vbox), m->entry, TRUE, FALSE, 3); gtk_widget_show (m->entry); gtk_widget_grab_focus (m->entry); @@ -298,7 +305,7 @@ request_password (struct _pass_msg *m) : _("_Remember this password for the remainder of this session")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (m->check), m->config_service ? m->config_service->save_passwd : FALSE); - gtk_box_pack_start (GTK_BOX (GTK_DIALOG (password_dialog)->vbox), m->check, TRUE, FALSE, 3); + gtk_box_pack_start (GTK_BOX (vbox), m->check, TRUE, FALSE, 3); gtk_widget_show (m->check); } |