commit | 88629ad99285f208c930d3b77a66260eadd17361 | [log] [tgz] |
---|---|---|
author | Jon Miranda <jonmiranda@google.com> | Wed Jul 17 20:45:38 2019 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Wed Jul 17 20:45:38 2019 -0700 |
tree | ba7679f21f9f71e28d9d1e5f31a83d3803bf9e55 | |
parent | 0c418bc1403684dcf2d5e74355daadf5ca392abd [diff] | |
parent | 49bc4241d9251e444da71f14033a047c756aa282 [diff] |
Fix bug where icon is no present during app close animation. am: bc27826478 am: aca4f39f0e am: 49bc4241d9 Change-Id: Ifb7f31ff6948688b706a1196517a0e643ba339eb
diff --git a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java index bf9d531..573fdcc 100644 --- a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java +++ b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
@@ -697,6 +697,10 @@ if (!mIsUserUnlocked) { return; } + if (!mMode.hasGestures && !mOverviewComponentObserver.isHomeAndOverviewSame()) { + // Prevent the overview from being started before the real home on first boot. + return; + } final ActivityControlHelper<BaseDraggingActivity> activityControl = mOverviewComponentObserver.getActivityControlHelper();