Merge "Flip default value for nav key setting." into nyc-mr1-dev

This commit is contained in:
TreeHugger Robot
2016-06-23 02:51:44 +00:00
committed by Android (Google) Code Review

View File

@@ -134,7 +134,7 @@ public class GestureSettings extends SettingsPreferenceFragment implements
}
private static boolean isSystemUINavigationEnabled(Context context) {
return Global.getInt(context.getContentResolver(), Global.SYSTEM_NAVIGATION_KEYS_ENABLED, 0)
return Global.getInt(context.getContentResolver(), Global.SYSTEM_NAVIGATION_KEYS_ENABLED, 1)
== 1;
}