From d3baa299f19126bb47fdf4bd83df3ecfd88944ef Mon Sep 17 00:00:00 2001 From: cketti Date: Thu, 27 Oct 2011 08:20:03 +0200 Subject: [PATCH] Use "reply after quoted text" value when editing drafts --- src/com/fsck/k9/activity/MessageCompose.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/fsck/k9/activity/MessageCompose.java b/src/com/fsck/k9/activity/MessageCompose.java index 2dff71d5a..7ef8dd049 100644 --- a/src/com/fsck/k9/activity/MessageCompose.java +++ b/src/com/fsck/k9/activity/MessageCompose.java @@ -910,7 +910,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc boolean replyAfterQuote = false; String action = getIntent().getAction(); if (mAccount.isReplyAfterQuote() && - (ACTION_REPLY.equals(action) || ACTION_REPLY_ALL.equals(action))) { + (ACTION_REPLY.equals(action) || ACTION_REPLY_ALL.equals(action) || + ACTION_EDIT_DRAFT.equals(action))) { replyAfterQuote = true; }