diff options
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/mail-signature-editor.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 5b0d09697f..be91569175 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2003-03-10 Jeffrey Stedfast <fejj@ximian.com> + * mail-signature-editor.c (do_exit): Remove the yes/no + buttons. Fixes bug #39382. + * mail-accounts.c (account_able_toggled): New callback function to handle the checkbox getting toggled. (mail_accounts_treeview_new): Save the toggle renderer so we can diff --git a/mail/mail-signature-editor.c b/mail/mail-signature-editor.c index c0f3fbaba3..e3a689bbc1 100644 --- a/mail/mail-signature-editor.c +++ b/mail/mail-signature-editor.c @@ -178,7 +178,7 @@ do_exit (ESignatureEditor *editor) dialog = gtk_message_dialog_new (GTK_WINDOW (editor->win), GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL, - GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, "%s", + GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE, "%s", _("This signature has been changed, but hasn't been saved.\n" "\nDo you wish to save your changes?")); gtk_dialog_add_buttons ((GtkDialog *) dialog, |