Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33f27e2c authored by Jim Miller's avatar Jim Miller Committed by Android (Google) Code Review
Browse files

Merge "Fix 4368649: Fix visible password issue on password unlock screen"

parents 455591b9 5a1ff22f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -125,7 +125,8 @@ public class PasswordUnlockScreen extends LinearLayout implements KeyguardScreen
            mPasswordEntry.setInputType(InputType.TYPE_CLASS_NUMBER
                    | InputType.TYPE_NUMBER_VARIATION_PASSWORD);
        } else {
            mPasswordEntry.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD);
            mPasswordEntry.setInputType(InputType.TYPE_CLASS_TEXT
                    | InputType.TYPE_TEXT_VARIATION_PASSWORD);
        }

        mEmergencyCallButton = (Button) findViewById(R.id.emergencyCall);