commit | 87f382b51436883383fb8124b56243969ebcd3e3 | [log] [tgz] |
---|---|---|
author | Evan Rosky <erosky@google.com> | Wed Mar 24 12:42:02 2021 -0700 |
committer | Prabir Pradhan <prabirmsp@google.com> | Wed Aug 04 10:28:23 2021 +0000 |
tree | ebd600acc4d29feb51fe5a8b6b80089a274e5963 | |
parent | a1da2da8e61b52135059bad22c47525321398279 [diff] |
Enable input window rotation flag Bug: 179274888 Test: no change, all existing tests pass Change-Id: I9afa6e8d42d2bcf91068164f3087c6805b73ba3d
diff --git a/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/EdgeBackGestureHandler.java b/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/EdgeBackGestureHandler.java index aaa3bf0..2bf4bf4 100644 --- a/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/EdgeBackGestureHandler.java +++ b/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/EdgeBackGestureHandler.java
@@ -106,7 +106,7 @@ static final String DEBUG_MISSING_GESTURE_TAG = "NoBackGesture"; private static final boolean ENABLE_PER_WINDOW_INPUT_ROTATION = - SystemProperties.getBoolean("persist.debug.per_window_input_rotation", false); + SystemProperties.getBoolean("persist.debug.per_window_input_rotation", true); private ISystemGestureExclusionListener mGestureExclusionListener = new ISystemGestureExclusionListener.Stub() {
diff --git a/services/core/java/com/android/server/input/InputManagerService.java b/services/core/java/com/android/server/input/InputManagerService.java index 2ac2110..ed98dbe 100644 --- a/services/core/java/com/android/server/input/InputManagerService.java +++ b/services/core/java/com/android/server/input/InputManagerService.java
@@ -180,7 +180,7 @@ private static final boolean UNTRUSTED_TOUCHES_TOAST = false; public static final boolean ENABLE_PER_WINDOW_INPUT_ROTATION = - SystemProperties.getBoolean("persist.debug.per_window_input_rotation", false); + SystemProperties.getBoolean("persist.debug.per_window_input_rotation", true); // Pointer to native input manager service object. private final long mPtr;