diff options
| author | 2023-07-26 03:38:00 +0000 | |
|---|---|---|
| committer | 2023-07-26 03:38:00 +0000 | |
| commit | 889ad7c5e0a96709e214ce51851f83324f78f31b (patch) | |
| tree | 5b2a15573af7323b523b7d82fbda7026dc0c9c97 | |
| parent | 7679a1ccf66a56bb50efa902493cf805552cce6e (diff) | |
| parent | c4d7ee11c9a18395f7e463f6467d0d5ebf49e834 (diff) | |
Merge "Avoid recursion for leaf task fragment in freeform mode" into main am: 30f6d64786 am: c6caf1223e am: 4625943b0e am: c4d7ee11c9
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2674876
Change-Id: Id61694fe732f25ba80e370bec7b4732deab41d0a
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | services/core/java/com/android/server/wm/TaskFragment.java | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/services/core/java/com/android/server/wm/TaskFragment.java b/services/core/java/com/android/server/wm/TaskFragment.java index 57ce368aae87..83949ccae366 100644 --- a/services/core/java/com/android/server/wm/TaskFragment.java +++ b/services/core/java/com/android/server/wm/TaskFragment.java @@ -1103,21 +1103,13 @@ class TaskFragment extends WindowContainer<WindowContainer> { } final int otherWindowingMode = other.getWindowingMode(); - if (otherWindowingMode == WINDOWING_MODE_FULLSCREEN) { - if (isTranslucent(other, starting)) { - // Can be visible behind a translucent fullscreen TaskFragment. - gotTranslucentFullscreen = true; - continue; - } - return TASK_FRAGMENT_VISIBILITY_INVISIBLE; - } else if (otherWindowingMode == WINDOWING_MODE_MULTI_WINDOW - && other.matchParentBounds()) { + if (otherWindowingMode == WINDOWING_MODE_FULLSCREEN + || (otherWindowingMode != WINDOWING_MODE_PINNED && other.matchParentBounds())) { if (isTranslucent(other, starting)) { // Can be visible behind a translucent TaskFragment. gotTranslucentFullscreen = true; continue; } - // Multi-window TaskFragment that matches parent bounds would occlude other children return TASK_FRAGMENT_VISIBILITY_INVISIBLE; } |