commit | c649ce9e30407ce9aa8c5575eba7cbcd5994b7b7 | [log] [tgz] |
---|---|---|
author | Tony Wickham <twickham@google.com> | Wed Mar 03 17:22:30 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Mar 03 17:22:30 2021 +0000 |
tree | d7867672d25f8b193279fd4720e65c687e39b91a | |
parent | 8013009ce77c0dd1e69ffa1b1b856339a20c7aa5 [diff] | |
parent | 4092352a991d7b9f241ad203caf2a258f72446e8 [diff] |
Merge "Add debug log for initInputMonitor()" into sc-dev am: 4092352a99 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/13714484 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I8beae0a9a8c055029f6c60b37d98265d067b7183
diff --git a/quickstep/src/com/android/quickstep/TouchInteractionService.java b/quickstep/src/com/android/quickstep/TouchInteractionService.java index e4c8b6f..27c7ade 100644 --- a/quickstep/src/com/android/quickstep/TouchInteractionService.java +++ b/quickstep/src/com/android/quickstep/TouchInteractionService.java
@@ -290,7 +290,13 @@ private void initInputMonitor() { disposeEventHandlers(); - if (mDeviceState.isButtonNavMode() || !SystemUiProxy.INSTANCE.get(this).isActive()) { + + if (TestProtocol.sDebugTracing) { + Log.d(TestProtocol.TIS_NO_EVENTS, "initInputMonitor: isButtonMode? " + + mDeviceState.isButtonNavMode()); + } + + if (mDeviceState.isButtonNavMode()) { return; }
diff --git a/src/com/android/launcher3/testing/TestProtocol.java b/src/com/android/launcher3/testing/TestProtocol.java index 218172b..72bbc43 100644 --- a/src/com/android/launcher3/testing/TestProtocol.java +++ b/src/com/android/launcher3/testing/TestProtocol.java
@@ -106,4 +106,5 @@ public static final String OVERIEW_NOT_ALLAPPS = "b/156095088"; public static final String NO_SWIPE_TO_HOME = "b/158017601"; public static final String WORK_PROFILE_REMOVED = "b/159671700"; + public static final String TIS_NO_EVENTS = "b/180915942"; }