From 3503355b2e85fd38f04a9fa410b3424de17b9d44 Mon Sep 17 00:00:00 2001 From: cketti Date: Sat, 9 Oct 2010 03:17:59 +0000 Subject: [PATCH] "Reply after quote" preference wasn't persisted. --- src/com/fsck/k9/Account.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/fsck/k9/Account.java b/src/com/fsck/k9/Account.java index 5116beb09..deeb4e186 100644 --- a/src/com/fsck/k9/Account.java +++ b/src/com/fsck/k9/Account.java @@ -549,6 +549,7 @@ public class Account implements BaseAccount editor.putInt(mUuid + ".maximumPolledMessageAge", maximumPolledMessageAge); editor.putInt(mUuid + ".maximumAutoDownloadMessageSize", maximumAutoDownloadMessageSize); editor.putString(mUuid + ".quotePrefix", mQuotePrefix); + editor.putBoolean(mUuid + ".replyAfterQuote", mReplyAfterQuote); editor.putString(mUuid + ".cryptoApp", mCryptoApp); editor.putBoolean(mUuid + ".cryptoAutoSignature", mCryptoAutoSignature);