1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

If the message is a reply, set focus to the message body. Adding addresses is not the default behavior when a user replies.

This commit is contained in:
Bradley Young 2008-12-21 06:20:32 +00:00
parent dc738afef4
commit 5d576f899f

View File

@ -402,6 +402,8 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
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() {