diff options
| author | 2024-04-10 10:07:38 +0000 | |
|---|---|---|
| committer | 2024-04-10 10:07:38 +0000 | |
| commit | 4dde7ca3921233682f43cf488081f66ffdaf889c (patch) | |
| tree | aed981dafe6155abb8e5c4291e1a7b88e8881336 | |
| parent | 73283a99337805575ad9f63ea55780bea93aa41f (diff) | |
| parent | 26deee874578a93707567f2de7a1ff3ab69b35b4 (diff) | |
Merge "Remove FLAG_ACTIVITY_CLEAR_TOP from ActivityStarterImpl." into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/ActivityStarterImpl.kt | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ActivityStarterImpl.kt b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ActivityStarterImpl.kt index 37646aea86e2..8ab1eca98cc9 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ActivityStarterImpl.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ActivityStarterImpl.kt @@ -479,7 +479,7 @@ constructor(              val runnable = Runnable {                  assistManagerLazy.get().hideAssist() -                intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP +                intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK                  intent.addFlags(flags)                  val result = intArrayOf(ActivityManager.START_CANCELED)                  activityTransitionAnimator.startIntentWithAnimation( |