commit | a1aac4335876fda3671013bd4973ec73506faee6 | [log] [tgz] |
---|---|---|
author | Tony Wickham <twickham@google.com> | Wed Mar 03 17:22:32 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Mar 03 17:22:32 2021 +0000 |
tree | d7867672d25f8b193279fd4720e65c687e39b91a | |
parent | c1d8417d0f1a476b123b7b83df2a8bea7786dfc0 [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: I267e03f22eeac8794788961c05d76c0264c691c4
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"; }