Skip to content
Snippets Groups Projects
Commit 11deb572 authored by str4d's avatar str4d
Browse files

Hide password strength meter when confirming password

parent 061479dd
No related branches found
No related tags found
No related merge requests found
......@@ -182,7 +182,7 @@ OnEditorActionListener {
private void enableOrDisableContinueButton() {
if (progress == null) return; // Not created yet
if (passwordEntry.getText().length() > 0)
if (passwordEntry.getText().length() > 0 && passwordEntry.hasFocus())
strengthMeter.setVisibility(VISIBLE);
else strengthMeter.setVisibility(INVISIBLE);
String nickname = nicknameEntry.getText().toString();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment