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

Commit 23c210c9 authored by Andrii Kulian's avatar Andrii Kulian Committed by android-build-merger
Browse files

Don't update configuration for invisible windows am: 3dcdf64c

am: fd592ffb

Change-Id: Ic312ac2db980be5351cf3b76478d15b9f8d80f65
parents 388e1096 fd592ffb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1764,7 +1764,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
    @Override
    void onResize() {
        final ArrayList<WindowState> resizingWindows = mService.mResizingWindows;
        if (mHasSurface && !resizingWindows.contains(this)) {
        if (mHasSurface && !isGoneForLayoutLw() && !resizingWindows.contains(this)) {
            if (DEBUG_RESIZE) Slog.d(TAG, "onResize: Resizing " + this);
            resizingWindows.add(this);
        }