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

Commit 03f20ba3 authored by Adam Cohen's avatar Adam Cohen Committed by Android Git Automerger
Browse files

am dcc5e71b: Fix issue where focus was sometimes missing when going to all apps with keyboard

* commit 'dcc5e71b':
  Fix issue where focus was sometimes missing when going to all apps with keyboard
parents 7bc272a1 dcc5e71b
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -3420,7 +3420,13 @@ public class Launcher extends Activity
            mAppsCustomizeTabHost.reset();
        }
        showAppsCustomizeHelper(animated, false, contentType);
        mAppsCustomizeTabHost.post(new Runnable() {
            @Override
            public void run() {
                // We post this in-case the all apps view isn't yet constructed.
                mAppsCustomizeTabHost.requestFocus();
            }
        });

        // Change the state *after* we've called all the transition code
        mState = State.APPS_CUSTOMIZE;