From 75400566c322a083bc8421762f0ec8fb9ac6c9af Mon Sep 17 00:00:00 2001 From: Ats Jenk Date: Thu, 2 Jun 2022 10:38:33 -0700 Subject: [PATCH] Enable bubbles home gesture by default Update feature flag for bubbles home gesture handling to be on by default. Bug: 170163464 Test: manually verified that home gesture feature is enabled on a fresh build Test: atest PlatformScenarioTests:android.platform.test.scenario.sysui.bubble Change-Id: Ifd5492a6fc75b0600a3f7a716711bb6de8aa70c3 --- .../Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java | 2 +- packages/SystemUI/src/com/android/systemui/flags/Flags.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java index 33a5fa12a4a16..c11a166135146 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java @@ -108,7 +108,7 @@ public class BubbleStackView extends FrameLayout * Set to {@code true} to enable home gesture handling in bubbles */ public static final boolean HOME_GESTURE_ENABLED = - SystemProperties.getBoolean("persist.wm.debug.bubbles_home_gesture", false); + SystemProperties.getBoolean("persist.wm.debug.bubbles_home_gesture", true); private static final String TAG = TAG_WITH_CLASS_NAME ? "BubbleStackView" : TAG_BUBBLES; diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.java b/packages/SystemUI/src/com/android/systemui/flags/Flags.java index 55bbcb654cf5e..37d4b50617609 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.java +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.java @@ -171,7 +171,7 @@ public class Flags { */ @Keep public static final SysPropBooleanFlag BUBBLES_HOME_GESTURE = - new SysPropBooleanFlag(1101, "persist.wm.debug.bubbles_home_gesture", false); + new SysPropBooleanFlag(1101, "persist.wm.debug.bubbles_home_gesture", true); // 1200 - predictive back @Keep