commit | 4afb35013465e1952d6648a1352852629a132ca0 | [log] [tgz] |
---|---|---|
author | Anna Wasewicz <awasewicz@google.com> | Wed Jul 17 15:15:46 2019 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Wed Jul 17 15:15:46 2019 -0700 |
tree | ba7679f21f9f71e28d9d1e5f31a83d3803bf9e55 | |
parent | d334cf7263add51767a86d5be49cf194a18fee7f [diff] | |
parent | 82f6f470b64df3c1e3480efaba34dcdab5f95d14 [diff] |
Set the chips flag to false in QP1A. This flag should be off by default. Chips should not be running in QP1A. Bug:137290162 am: 31d0a9c562 am: 711ed0aa49 am: 82f6f470b6 Change-Id: I19cf689ae757393e5e7870effa60748dae48e372
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();