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

Commit d6a91b0b authored by Alan Viverette's avatar Alan Viverette Committed by Android (Google) Code Review
Browse files

Merge "Fix password obscuring in TextView accessibility node"

parents c135fffe 3a499e01
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8194,7 +8194,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
        final boolean isPassword = hasPasswordTransformationMethod();
        info.setPassword(isPassword);

        if (!isPassword) {
        if (!isPassword || shouldSpeakPasswordsForAccessibility()) {
            info.setText(getTextForAccessibility());
        }