From 21b0925061702c0c2a6ee30819c739409bba39d2 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Thu, 15 Jul 2010 10:20:14 +0100 Subject: Change 'Reply to All' toolbar button into configurable 'Group Reply' ...with a dropdown menu like the Forward button, and configuration for whether it tries to do 'Reply to List' by default. --- modules/mail/e-mail-shell-settings.c | 4 ++++ modules/mail/em-composer-prefs.c | 5 +++++ 2 files changed, 9 insertions(+) (limited to 'modules/mail') diff --git a/modules/mail/e-mail-shell-settings.c b/modules/mail/e-mail-shell-settings.c index 29433aa3e6..c17cc8744f 100644 --- a/modules/mail/e-mail-shell-settings.c +++ b/modules/mail/e-mail-shell-settings.c @@ -219,6 +219,10 @@ e_mail_shell_settings_init (EShell *shell) "composer-ignore-list-reply-to", "/apps/evolution/mail/composer/ignore_list_reply_to"); + e_shell_settings_install_property_for_key ( + "composer-group-reply-to-list", + "/apps/evolution/mail/composer/group_reply_to_list"); + e_shell_settings_install_property_for_key ( "composer-prompt-only-bcc", "/apps/evolution/mail/prompts/only_bcc"); diff --git a/modules/mail/em-composer-prefs.c b/modules/mail/em-composer-prefs.c index ad3cb46041..93620669a3 100644 --- a/modules/mail/em-composer-prefs.c +++ b/modules/mail/em-composer-prefs.c @@ -452,6 +452,11 @@ em_composer_prefs_construct (EMComposerPrefs *prefs, shell_settings, "composer-ignore-list-reply-to", widget, "active"); + widget = e_builder_get_widget (prefs->builder, "chkGroupReplyToList"); + e_mutual_binding_new ( + shell_settings, "composer-group-reply-to-list", + widget, "active"); + widget = e_builder_get_widget (prefs->builder, "chkTopSignature"); e_mutual_binding_new ( shell_settings, "composer-top-signature", -- cgit