From 266a3eddcf87ac54dfb0ba6191d35bad83bfd009 Mon Sep 17 00:00:00 2001 From: Bradley Young Date: Tue, 23 Dec 2008 02:01:51 +0000 Subject: [PATCH] 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. --- src/com/android/email/activity/MessageCompose.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/com/android/email/activity/MessageCompose.java b/src/com/android/email/activity/MessageCompose.java index 394700141..ffa1fbc98 100644 --- a/src/com/android/email/activity/MessageCompose.java +++ b/src/com/android/email/activity/MessageCompose.java @@ -399,11 +399,14 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus mSourceMessageUid, 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(), "")); updateTitle(); - //change focus to message body. - mMessageContentView.requestFocus(); } public void onResume() {