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

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

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

am: d72d840c

Change-Id: I035d038a5254fe086703d427a6fc81f0ce085047
parents 1b4fa91e d72d840c
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);