aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_common_dialog.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-12-21 07:35:15 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-12-21 07:35:15 +0000
commit19453aea34c35def050511678fa4244c0ecdabb5 (patch)
tree7edba71c5c8b2a6a4e26f00b2432a2ae325ef12e /src/prefs_common_dialog.c
parent96ac773bf82363529a25fd85cb32e53cc0faa10a (diff)
added option to set only mail address of recipients when replying.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2404 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_common_dialog.c')
-rw-r--r--src/prefs_common_dialog.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/prefs_common_dialog.c b/src/prefs_common_dialog.c
index 9ec73d01..74e0735b 100644
--- a/src/prefs_common_dialog.c
+++ b/src/prefs_common_dialog.c
@@ -108,6 +108,7 @@ static struct Compose {
GtkWidget *checkbtn_quote;
GtkWidget *checkbtn_default_reply_list;
GtkWidget *checkbtn_inherit_recipient_on_self_reply;
+ GtkWidget *checkbtn_reply_address_only;
} compose;
static struct Quote {
@@ -349,6 +350,9 @@ static PrefsUIData ui_data[] = {
{"inherit_recipient_on_self_reply",
&compose.checkbtn_inherit_recipient_on_self_reply,
prefs_set_data_from_toggle, prefs_set_toggle},
+ {"reply_address_only",
+ &compose.checkbtn_reply_address_only,
+ prefs_set_data_from_toggle, prefs_set_toggle},
/* {"show_ruler", NULL, NULL, NULL}, */
@@ -1083,6 +1087,7 @@ static void prefs_compose_create(void)
GtkWidget *checkbtn_quote;
GtkWidget *checkbtn_default_reply_list;
GtkWidget *checkbtn_inherit_recipient_on_self_reply;
+ GtkWidget *checkbtn_reply_address_only;
GtkWidget *quote_wid;
#if USE_GTKSPELL
@@ -1136,9 +1141,11 @@ static void prefs_compose_create(void)
PACK_CHECK_BUTTON (vbox2, checkbtn_quote,
_("Quote message when replying"));
PACK_CHECK_BUTTON (vbox2, checkbtn_default_reply_list,
- _("Reply button invokes mailing list reply"));
+ _("Reply to mailing list by Reply button"));
PACK_CHECK_BUTTON (vbox2, checkbtn_inherit_recipient_on_self_reply,
_("Inherit recipients on reply to self messages"));
+ PACK_CHECK_BUTTON (vbox2, checkbtn_reply_address_only,
+ _("Set only mail address of recipients when replying"));
/* editor */
@@ -1274,6 +1281,7 @@ static void prefs_compose_create(void)
compose.checkbtn_default_reply_list = checkbtn_default_reply_list;
compose.checkbtn_inherit_recipient_on_self_reply =
checkbtn_inherit_recipient_on_self_reply;
+ compose.checkbtn_reply_address_only = checkbtn_reply_address_only;
}
static GtkWidget *prefs_quote_create(void)