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

Commit dcc5e71b authored by Adam Cohen's avatar Adam Cohen
Browse files

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

issue 15407977

Change-Id: I806c4f3d4c5951e4caa7eddaff366a68585f1cd9
parent db78dc8a
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;