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

Commit 3a499e01 authored by Alan Viverette's avatar Alan Viverette
Browse files

Fix password obscuring in TextView accessibility node

BUG: 14998638
Change-Id: I215ea7b11bef5242e6adb1e595df36555548c165
parent 677a9f24
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());
        }