aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorDavid Woodhouse <David.Woodhouse@intel.com>2010-07-15 17:20:14 +0800
committerDavid Woodhouse <David.Woodhouse@intel.com>2010-07-15 23:48:45 +0800
commit21b0925061702c0c2a6ee30819c739409bba39d2 (patch)
tree3c06d3ead698c7484c6505f8958d94fc3222f017 /modules
parentff8615ec0ad504b3fb81784747b82fca42ed1457 (diff)
downloadgsoc2013-evolution-21b0925061702c0c2a6ee30819c739409bba39d2.tar
gsoc2013-evolution-21b0925061702c0c2a6ee30819c739409bba39d2.tar.gz
gsoc2013-evolution-21b0925061702c0c2a6ee30819c739409bba39d2.tar.bz2
gsoc2013-evolution-21b0925061702c0c2a6ee30819c739409bba39d2.tar.lz
gsoc2013-evolution-21b0925061702c0c2a6ee30819c739409bba39d2.tar.xz
gsoc2013-evolution-21b0925061702c0c2a6ee30819c739409bba39d2.tar.zst
gsoc2013-evolution-21b0925061702c0c2a6ee30819c739409bba39d2.zip
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.
Diffstat (limited to 'modules')
-rw-r--r--modules/mail/e-mail-shell-settings.c4
-rw-r--r--modules/mail/em-composer-prefs.c5
2 files changed, 9 insertions, 0 deletions
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
@@ -220,6 +220,10 @@ e_mail_shell_settings_init (EShell *shell)
"/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",