diff options
| author | Jules Aguillon | 2023-06-03 11:08:22 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2023-06-03 11:15:19 +0200 |
| commit | 69e0b4c2a2424b83ce0ec876938ec3e73dd5b612 (patch) | |
| tree | 75c002dcf243d440497a6ce11b30c50a50b4bd8f /res/xml/settings.xml | |
| parent | 6f418727cfcdd9377a345c8a40e200f701aa7ac7 (diff) | |
| download | unexpected-keyboard-69e0b4c2a2424b83ce0ec876938ec3e73dd5b612.tar.gz unexpected-keyboard-69e0b4c2a2424b83ce0ec876938ec3e73dd5b612.zip | |
More control over vibration
The newer haptic feedback API that is used instead of the vibrator
service since ef03dfe doesn't work for everyone.
The new vibration option allow to choose both the newer API ("system")
and the older API ("strong", "medium", "light").
Diffstat (limited to 'res/xml/settings.xml')
| -rw-r--r-- | res/xml/settings.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/xml/settings.xml b/res/xml/settings.xml index fafc174..322bf4d 100644 --- a/res/xml/settings.xml +++ b/res/xml/settings.xml @@ -55,7 +55,7 @@ <PreferenceCategory android:title="@string/pref_category_behavior"> <CheckBoxPreference android:key="autocapitalisation" android:title="@string/pref_autocapitalisation_title" android:summary="@string/pref_autocapitalisation_summary" android:defaultValue="true"/> <CheckBoxPreference android:key="switch_input_immediate" android:title="@string/pref_switch_input_immediate_title" android:summary="@string/pref_switch_input_immediate_summary" android:defaultValue="false"/> - <CheckBoxPreference android:key="vibrate_enabled" android:title="@string/pref_vibrate_title" android:summary="@string/pref_vibrate_summary" android:defaultValue="true"/> + <ListPreference android:key="vibration_behavior" android:title="@string/pref_vibrate_title" android:summary="@string/pref_vibrate_summary" android:defaultValue="system" android:entries="@array/pref_vibration_entries" android:entryValues="@array/pref_vibration_values"/> </PreferenceCategory> <PreferenceCategory android:title="@string/pref_category_style"> <ListPreference android:key="theme" android:title="@string/pref_theme" android:summary="%s" android:defaultValue="system" android:entries="@array/pref_theme_entries" android:entryValues="@array/pref_theme_values"/> |
