mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-18 05:42:15 -05:00
Merge branch 'focus_to_box'
This commit is contained in:
commit
4724848a5a
@ -526,8 +526,12 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||||||
ACTION_EDIT_DRAFT.equals(action)) {
|
ACTION_EDIT_DRAFT.equals(action)) {
|
||||||
//change focus to message body.
|
//change focus to message body.
|
||||||
mMessageContentView.requestFocus();
|
mMessageContentView.requestFocus();
|
||||||
|
} else {
|
||||||
|
// Explicitly set focus to "To:" input field (see issue 2998)
|
||||||
|
mToView.requestFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
mEncryptLayout = findViewById(R.id.layout_encrypt);
|
mEncryptLayout = findViewById(R.id.layout_encrypt);
|
||||||
mCryptoSignatureCheckbox = (CheckBox)findViewById(R.id.cb_crypto_signature);
|
mCryptoSignatureCheckbox = (CheckBox)findViewById(R.id.cb_crypto_signature);
|
||||||
mCryptoSignatureUserId = (TextView)findViewById(R.id.userId);
|
mCryptoSignatureUserId = (TextView)findViewById(R.id.userId);
|
||||||
|
Loading…
Reference in New Issue
Block a user