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

Commit 77119bc6 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Fix issue #7342364: JellyBean broke Toddler Lock, again

Change-Id: I400c02711edc302a1bc7fbf98b62fcb9f76e5e12
parent 74261d84
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2522,7 +2522,8 @@ public class PackageManagerService extends IPackageManager.Stub {
                    if (pa.mPref.mMatch != match) {
                        continue;
                    }
                    final ActivityInfo ai = getActivityInfo(pa.mPref.mComponent, flags, userId);
                    final ActivityInfo ai = getActivityInfo(pa.mPref.mComponent,
                            flags | PackageManager.GET_DISABLED_COMPONENTS, userId);
                    if (DEBUG_PREFERRED) {
                        Log.v(TAG, "Got preferred activity:");
                        if (ai != null) {
+2 −1
Original line number Diff line number Diff line
@@ -10561,7 +10561,8 @@ public class WindowManagerService extends IWindowManager.Stub
                        pw.print(": "); pw.println(pair.second);
            }
        }
        pw.println("  DisplayContents");
        pw.println();
        pw.println("  DisplayContents:");
        if (mDisplayReady) {
            DisplayContentsIterator dCIterator = new DisplayContentsIterator();
            while (dCIterator.hasNext()) {