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

Commit edbcf2c4 authored by Phil Weaver's avatar Phil Weaver
Browse files

Stop focusing views before layout.

Rolls back one line of ag/2257919.

Bug: 63811145
Test: TalkBack no longer reads the page backwards in:
Settings > System > Reset > Factory data reset
Settings > Connected devices > Android Beam

Change-Id: I6b04e64cd650ebda193da4a54bf0721bd256820c
parent ce099ba8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13281,7 +13281,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
                // about in case nothing has focus.  even if this specific view
                // isn't focusable, it may contain something that is, so let
                // the root view try to give this focus if nothing else does.
                if ((mParent != null)) {
                if ((mParent != null) && (mBottom > mTop) && (mRight > mLeft)) {
                    mParent.focusableViewAvailable(this);
                }
            }