aboutsummaryrefslogtreecommitdiff
path: root/libsylph
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-06-07 08:53:28 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-06-07 08:53:28 +0000
commitbf8f09d3ba0cb9722a4aac217b3b2f49fc9b6683 (patch)
tree2a0d70f0ea0257facf4fe0f09571843df0762147 /libsylph
parentcd889b96814cd7c88f254ac91b92d807915e8d5d (diff)
made the old behavior of address completion configurable.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2565 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r--libsylph/prefs_common.c2
-rw-r--r--libsylph/prefs_common.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/libsylph/prefs_common.c b/libsylph/prefs_common.c
index e6358b42..4b5759de 100644
--- a/libsylph/prefs_common.c
+++ b/libsylph/prefs_common.c
@@ -437,6 +437,8 @@ static PrefParam param[] = {
P_BOOL},
{"enable_address_completion", "TRUE",
&prefs_common.enable_address_completion, P_BOOL},
+ {"fullauto_completion_mode", "TRUE",
+ &prefs_common.fullauto_completion_mode, P_BOOL},
{"confirm_on_exit", "FALSE", &prefs_common.confirm_on_exit, P_BOOL},
{"clean_trash_on_exit", "FALSE", &prefs_common.clean_on_exit, P_BOOL},
diff --git a/libsylph/prefs_common.h b/libsylph/prefs_common.h
index 9f247910..88cd41f9 100644
--- a/libsylph/prefs_common.h
+++ b/libsylph/prefs_common.h
@@ -314,6 +314,7 @@ struct _PrefsCommon
gboolean reply_address_only; /* Compose */
gboolean recipients_autoreg; /* Send */
gboolean enable_address_completion; /* Compose */
+ gboolean fullauto_completion_mode; /* Compose */
};
extern PrefsCommon prefs_common;