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

Commit 910ac520 authored by David Stevens's avatar David Stevens Committed by Android (Google) Code Review
Browse files

Merge "Only kill processes on default display density change"

parents c515d6b7 d057cf8e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19733,7 +19733,7 @@ public class ActivityManagerService extends IActivityManager.Stub
        mStackSupervisor.setDisplayOverrideConfiguration(mTempConfig, displayId);
        final boolean isDensityChange = (changes & ActivityInfo.CONFIG_DENSITY) != 0;
        if (isDensityChange) {
        if (isDensityChange && displayId == DEFAULT_DISPLAY) {
            // Reset the unsupported display size dialog.
            mUiHandler.sendEmptyMessage(SHOW_UNSUPPORTED_DISPLAY_SIZE_DIALOG_MSG);