Merge pull request #96139 from Alex2782/reverting_pr_84331

Add configuration option to disable `Scroll Deadzone` on Android
This commit is contained in:
Thaddeus Crews 2025-04-11 09:51:08 -05:00
commit 4972a524fc
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
7 changed files with 24 additions and 2 deletions

View file

@ -1651,6 +1651,7 @@ ProjectSettings::ProjectSettings() {
GLOBAL_DEF_BASIC("input_devices/pointing/android/enable_pan_and_scale_gestures", false);
GLOBAL_DEF_BASIC(PropertyInfo(Variant::INT, "input_devices/pointing/android/rotary_input_scroll_axis", PROPERTY_HINT_ENUM, "Horizontal,Vertical"), 1);
GLOBAL_DEF("input_devices/pointing/android/override_volume_buttons", false);
GLOBAL_DEF_BASIC("input_devices/pointing/android/disable_scroll_deadzone", false);
// These properties will not show up in the dialog. If you want to exclude whole groups, use add_hidden_prefix().
GLOBAL_DEF_INTERNAL("application/config/features", PackedStringArray());