mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-16 06:25:06 -05:00
Correcting issue with message body being the target, regardless of action (reply, forward, compose).
Should target the message body on reply, reply all, and edit draft.
This commit is contained in:
parent
18c51bae5c
commit
266a3eddcf
@ -399,11 +399,14 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
|
|||||||
mSourceMessageUid,
|
mSourceMessageUid,
|
||||||
mListener);
|
mListener);
|
||||||
}
|
}
|
||||||
|
if (ACTION_REPLY.equals(action) || ACTION_REPLY_ALL.equals(action) ||
|
||||||
|
ACTION_EDIT_DRAFT.equals(action)) {
|
||||||
|
//change focus to message body.
|
||||||
|
mMessageContentView.requestFocus();
|
||||||
|
}
|
||||||
|
|
||||||
addAddress(mBccView, new Address(mAccount.getAlwaysBcc(), ""));
|
addAddress(mBccView, new Address(mAccount.getAlwaysBcc(), ""));
|
||||||
updateTitle();
|
updateTitle();
|
||||||
//change focus to message body.
|
|
||||||
mMessageContentView.requestFocus();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onResume() {
|
public void onResume() {
|
||||||
|
Loading…
Reference in New Issue
Block a user