Merge "ChooseLockPassword should not show "confirm" until min length is met"
This commit is contained in:
committed by
Android (Google) Code Review
commit
e00a14b14c
@@ -885,7 +885,7 @@ public class ChooseLockPassword extends SettingsActivity {
|
||||
// Hide password requirement view when we are just asking user to confirm the pw.
|
||||
mPasswordRestrictionView.setVisibility(View.GONE);
|
||||
setHeaderText(getString(mUiStage.getHint(mIsAlphaMode, mForFingerprint)));
|
||||
setNextEnabled(canInput && length > 0);
|
||||
setNextEnabled(canInput && length >= mPasswordMinLength);
|
||||
mClearButton.setEnabled(canInput && length > 0);
|
||||
}
|
||||
int message = mUiStage.getMessage(mIsAlphaMode, mForFingerprint);
|
||||
|
Reference in New Issue
Block a user