From 8f5de15ba1cd06991938d58fd36375930865693f Mon Sep 17 00:00:00 2001 From: Kevin Chyn Date: Mon, 24 Jul 2017 14:00:18 -0700 Subject: [PATCH] Default-off FP Swipe Fixes: 63992836 Test: adb shell settings delete secure system_navigation_keys_enabled && make -j RunSettingsRoboTests Change-Id: I3245c7b8844df5edaea311c1871b1dd05b8b7784 --- .../gestures/SwipeToNotificationPreferenceController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/gestures/SwipeToNotificationPreferenceController.java b/src/com/android/settings/gestures/SwipeToNotificationPreferenceController.java index bb63f21b802..defd75fa32f 100644 --- a/src/com/android/settings/gestures/SwipeToNotificationPreferenceController.java +++ b/src/com/android/settings/gestures/SwipeToNotificationPreferenceController.java @@ -79,7 +79,7 @@ public class SwipeToNotificationPreferenceController extends GesturePreferenceCo @Override protected boolean isSwitchPrefEnabled() { return Settings.Secure.getInt(mContext.getContentResolver(), - Settings.Secure.SYSTEM_NAVIGATION_KEYS_ENABLED, 1) + Settings.Secure.SYSTEM_NAVIGATION_KEYS_ENABLED, 0) == 1; }