From 5d576f899fc86bcc5d28f402c6223facaf94e6f6 Mon Sep 17 00:00:00 2001 From: Bradley Young Date: Sun, 21 Dec 2008 06:20:32 +0000 Subject: [PATCH] If the message is a reply, set focus to the message body. Adding addresses is not the default behavior when a user replies. --- src/com/android/email/activity/MessageCompose.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/android/email/activity/MessageCompose.java b/src/com/android/email/activity/MessageCompose.java index 80c39c198..394700141 100644 --- a/src/com/android/email/activity/MessageCompose.java +++ b/src/com/android/email/activity/MessageCompose.java @@ -402,6 +402,8 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus addAddress(mBccView, new Address(mAccount.getAlwaysBcc(), "")); updateTitle(); + //change focus to message body. + mMessageContentView.requestFocus(); } public void onResume() {