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

Commit 5a1ff22f authored by Jim Miller's avatar Jim Miller
Browse files

Fix 4368649: Fix visible password issue on password unlock screen

Change-Id: I9ec30898e27d49d82d11dfcf3abb4273e4277316
parent 7e7248f2
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);