commit | 8f5de15ba1cd06991938d58fd36375930865693f | [log] [tgz] |
---|---|---|
author | Kevin Chyn <kchyn@google.com> | Mon Jul 24 14:00:18 2017 -0700 |
committer | Kevin Chyn <kchyn@google.com> | Mon Jul 24 14:00:18 2017 -0700 |
tree | 48e9cad617a73927fc3c542dd195f855e2dfb87f | |
parent | 6666bf5605885880961023228cf077ea5ee081d3 [diff] |
Default-off FP Swipe Fixes: 63992836 Test: adb shell settings delete secure system_navigation_keys_enabled && make -j RunSettingsRoboTests Change-Id: I3245c7b8844df5edaea311c1871b1dd05b8b7784
diff --git a/src/com/android/settings/gestures/SwipeToNotificationPreferenceController.java b/src/com/android/settings/gestures/SwipeToNotificationPreferenceController.java index bb63f21..defd75f 100644 --- a/src/com/android/settings/gestures/SwipeToNotificationPreferenceController.java +++ b/src/com/android/settings/gestures/SwipeToNotificationPreferenceController.java
@@ -79,7 +79,7 @@ @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; }