Merge "Set TOUCHPAD_NATURAL_SCROLLING default value to 1" into udc-dev

This commit is contained in:
Daniel Huang
2023-05-05 02:34:03 +00:00
committed by Android (Google) Code Review

View File

@@ -233,7 +233,7 @@ public class InputSettings {
*/
public static boolean useTouchpadNaturalScrolling(@NonNull Context context) {
return Settings.System.getIntForUser(context.getContentResolver(),
Settings.System.TOUCHPAD_NATURAL_SCROLLING, 0, UserHandle.USER_CURRENT) == 1;
Settings.System.TOUCHPAD_NATURAL_SCROLLING, 1, UserHandle.USER_CURRENT) == 1;
}
/**