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

Commit c28230cf authored by Jorim Jaggi's avatar Jorim Jaggi Committed by Android (Google) Code Review
Browse files

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

parents 021a48d5 22a869f5
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;
        }