Default-off FP Swipe

Fixes: 63992836

Test: adb shell settings delete secure system_navigation_keys_enabled
&& make -j RunSettingsRoboTests

Change-Id: I3245c7b8844df5edaea311c1871b1dd05b8b7784
This commit is contained in:
Kevin Chyn
2017-07-24 14:00:18 -07:00
parent 6666bf5605
commit 8f5de15ba1

View File

@@ -79,7 +79,7 @@ public class SwipeToNotificationPreferenceController extends GesturePreferenceCo
@Override @Override
protected boolean isSwitchPrefEnabled() { protected boolean isSwitchPrefEnabled() {
return Settings.Secure.getInt(mContext.getContentResolver(), return Settings.Secure.getInt(mContext.getContentResolver(),
Settings.Secure.SYSTEM_NAVIGATION_KEYS_ENABLED, 1) Settings.Secure.SYSTEM_NAVIGATION_KEYS_ENABLED, 0)
== 1; == 1;
} }