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

Commit 702f98a0 authored by Aaron Liu's avatar Aaron Liu Committed by Automerger Merge Worker
Browse files

Merge "Remove a11y noise for bouncer unlock" into udc-dev am: 4ee1f010 am:...

Merge "Remove a11y noise for bouncer unlock" into udc-dev am: 4ee1f010 am: 00496319 am: f36073b5

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23617628



Change-Id: I4ee071dbaece96ad02872070fc670094b95ff21f
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 05d72834 f36073b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ public class KeyguardMessageAreaController<T extends KeyguardMessageArea>
        @Override
        public void run() {
            final View host = mHost.get();
            if (host != null) {
            if (host != null && host.isVisibleToUser()) {
                host.announceForAccessibility(mTextToAnnounce);
            }
        }
+1 −1
Original line number Diff line number Diff line
@@ -326,7 +326,7 @@ public class LockIconViewController extends ViewController<LockIconView> impleme
        }

        if (!Objects.equals(prevContentDescription, mView.getContentDescription())
                && mView.getContentDescription() != null) {
                && mView.getContentDescription() != null && mView.isVisibleToUser()) {
            mView.announceForAccessibility(mView.getContentDescription());
        }
    }