aboutsummaryrefslogtreecommitdiff
path: root/libsylph
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-01-07 06:53:58 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-01-07 06:53:58 +0000
commit67dafc6d14d604ae87eb060763a7364f8b58e462 (patch)
tree87d2cd6d2aa822eab203145d6141a7bdeb0aa93d /libsylph
parentc2b0ac470bcbc1c508814b274909c44caadb4e5a (diff)
added an option to disable the send dialog.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2781 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r--libsylph/prefs_common.c1
-rw-r--r--libsylph/prefs_common.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/libsylph/prefs_common.c b/libsylph/prefs_common.c
index 1467db66..683bc069 100644
--- a/libsylph/prefs_common.c
+++ b/libsylph/prefs_common.c
@@ -57,6 +57,7 @@ static PrefParam param[] = {
{"filter_sent_message", "FALSE", &prefs_common.filter_sent, P_BOOL},
{"recipients_autoreg", "TRUE", &prefs_common.recipients_autoreg,
P_BOOL},
+ {"show_send_dialog", "TRUE", &prefs_common.show_send_dialog, P_BOOL},
{"encoding_method", "0", &prefs_common.encoding_method, P_ENUM},
{"mime_filename_encoding_method", "0",
diff --git a/libsylph/prefs_common.h b/libsylph/prefs_common.h
index ca0eb9d8..8a68039d 100644
--- a/libsylph/prefs_common.h
+++ b/libsylph/prefs_common.h
@@ -324,6 +324,7 @@ struct _PrefsCommon
gboolean always_mark_read_on_show_msg; /* Interface */
gboolean always_add_address_only; /* Compose */
+ gboolean show_send_dialog; /* Send */
};
extern PrefsCommon prefs_common;