Merge "Don't display warning message on edit incoming settings"
This commit is contained in:
commit
b9d835a2bb
@ -262,6 +262,10 @@ public class AccountSetupExchangeFragment extends AccountServerBaseFragment
|
|||||||
|
|
||||||
if (hostAuth.mPassword != null) {
|
if (hostAuth.mPassword != null) {
|
||||||
mPasswordView.setText(hostAuth.mPassword);
|
mPasswordView.setText(hostAuth.mPassword);
|
||||||
|
// Since username is uneditable, focus on the next editable field
|
||||||
|
if (mSettingsMode) {
|
||||||
|
mPasswordView.requestFocus();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
String protocol = hostAuth.mProtocol;
|
String protocol = hostAuth.mProtocol;
|
||||||
|
@ -313,6 +313,10 @@ public class AccountSetupIncomingFragment extends AccountServerBaseFragment {
|
|||||||
String password = recvAuth.mPassword;
|
String password = recvAuth.mPassword;
|
||||||
if (password != null) {
|
if (password != null) {
|
||||||
mPasswordView.setText(password);
|
mPasswordView.setText(password);
|
||||||
|
// Since username is uneditable, focus on the next editable field
|
||||||
|
if (mSettingsMode) {
|
||||||
|
mPasswordView.requestFocus();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (HostAuth.SCHEME_IMAP.equals(recvAuth.mProtocol)) {
|
if (HostAuth.SCHEME_IMAP.equals(recvAuth.mProtocol)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user