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

Commit 22a869f5 authored by Jorim Jaggi's avatar Jorim Jaggi
Browse files

Intersect task with stack bounds for dimming

Bug: 27240436
Change-Id: I9aba4a476d81b219e4d361d606a4339b0ebc5395
parent a04c532a
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;
        }