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

Commit 03f3822f authored by Jorim Jaggi's avatar Jorim Jaggi Committed by android-build-merger
Browse files

Merge "Intersect task with stack bounds for dimming" into nyc-dev

am: c28230cf

* commit 'c28230cf':
  Intersect task with stack bounds for dimming

Change-Id: I3408437bd2e270f82baa06dff9c20b29e17203f5
parents 32203d47 c28230cf
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -498,7 +498,15 @@ class Task implements DimLayer.DimLayerUser {
                return;
            }

            if (!mFullscreen) {
                // When minimizing the docked stack when going home, we don't adjust the task bounds
                // so we need to intersect the task bounds with the stack bounds here.
                mStack.getBounds(mTmpRect);
                mTmpRect.intersect(mBounds);
                out.set(mTmpRect);
            } else {
                out.set(mBounds);
            }
            return;
        }