mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Use "reply after quoted text" value when editing drafts
This commit is contained in:
parent
f4f726ae67
commit
d3baa299f1
@ -910,7 +910,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||||||
boolean replyAfterQuote = false;
|
boolean replyAfterQuote = false;
|
||||||
String action = getIntent().getAction();
|
String action = getIntent().getAction();
|
||||||
if (mAccount.isReplyAfterQuote() &&
|
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;
|
replyAfterQuote = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user