diff options
| author | 2022-10-23 19:20:02 +0000 | |
|---|---|---|
| committer | 2022-10-23 19:20:02 +0000 | |
| commit | 68b128d4840aac78511b39ada0c33e857940e8c2 (patch) | |
| tree | 1db54f5c5d06d0b691a31dce7593776015808702 | |
| parent | 4f78028734dcb2c2d74c68c5a292926ac7a61dc6 (diff) | |
| parent | fc71292f7c15f6f6e44b65ab71c3c2af2ff1bb21 (diff) | |
Merge "Make fling-to-dismiss disabled by default for PiP." into tm-qpr-dev am: 00c35a0533 am: fc71292f7c
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20069055
Change-Id: I247fe5716da315a02e0f5cfa30d2c2dbfacb06d4
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/PipMotionHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/PipMotionHelper.java b/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/PipMotionHelper.java index afb64c9eec41..43d3f36f1fe5 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/PipMotionHelper.java +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/PipMotionHelper.java @@ -60,7 +60,7 @@ public class PipMotionHelper implements PipAppOpsListener.Callback, FloatingContentCoordinator.FloatingContent { public static final boolean ENABLE_FLING_TO_DISMISS_PIP = - SystemProperties.getBoolean("persist.wm.debug.fling_to_dismiss_pip", true); + SystemProperties.getBoolean("persist.wm.debug.fling_to_dismiss_pip", false); private static final String TAG = "PipMotionHelper"; private static final boolean DEBUG = false; |