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

Commit 4268bede authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Set stack bounds to null instead of empty for fullscreen" into oc-dev

parents 9be76f01 e48b7d81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2503,7 +2503,7 @@ public class ActivityStackSupervisor extends ConfigurationContainer implements D
                                tempRect /* outStackBounds */,
                                otherTaskRect /* outTempTaskBounds */, true /* ignoreVisibility */);

                        resizeStackLocked(i, tempRect,
                        resizeStackLocked(i, !tempRect.isEmpty() ? tempRect : null,
                                !otherTaskRect.isEmpty() ? otherTaskRect : tempOtherTaskBounds,
                                tempOtherTaskInsetBounds, preserveWindows,
                                true /* allowResizeInDockedMode */, deferResume);