diff options
| author | Jules Aguillon | 2022-07-24 23:55:00 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2022-07-24 23:55:00 +0200 |
| commit | 53b9afa973e2ba1ab32f8e0865f624aaeb43aaa3 (patch) | |
| tree | b194ef4b5eacc51ddfedd77c21bb66ceb822f429 /res/xml | |
| parent | 081e9a6e531a34bb1639c2527f315c0be966e5d7 (diff) | |
| download | unexpected-keyboard-53b9afa973e2ba1ab32f8e0865f624aaeb43aaa3.tar.gz unexpected-keyboard-53b9afa973e2ba1ab32f8e0865f624aaeb43aaa3.zip | |
Hold any modifier to lock
Modifiers can be locked with a long press. The key repeat mechanism is re-used
and the press timeout is the same.
Every modifiers can be locked that way, not only the "lockable" ones.
The previous behavior can be enabled in the settings (for shift only)
but the default is changed.
Diffstat (limited to 'res/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 4283d8d..6a87c4f 100644 --- a/res/xml/settings.xml +++ b/res/xml/settings.xml @@ -11,8 +11,8 @@ <juloo.common.IntSlideBarPreference android:key="longpress_timeout" android:title="@string/pref_long_timeout_title" android:summary="%sms" android:defaultValue="600" min="50" max="2000"/> <juloo.common.IntSlideBarPreference android:key="longpress_interval" android:title="@string/pref_long_interval_title" android:summary="%sms" android:defaultValue="25" min="5" max="100"/> <CheckBoxPreference android:key="precise_repeat" android:title="@string/pref_precise_repeat_title" android:summary="@string/pref_precise_repeat_summary" android:defaultValue="true"/> + <CheckBoxPreference android:key="lock_double_tap" android:title="@string/pref_lock_double_tap_title" android:summary="@string/pref_lock_double_tap_summary" android:defaultValue="false"/> <PreferenceScreen android:title="@string/pref_lockable_keys_title" android:summary="@string/pref_lockable_keys_summary"> - <CheckBoxPreference android:key="lockable_shift" android:title="Shift" android:defaultValue="true"/> <CheckBoxPreference android:key="lockable_ctrl" android:title="Ctrl" android:defaultValue="false"/> <CheckBoxPreference android:key="lockable_alt" android:title="Alt" android:defaultValue="false"/> <CheckBoxPreference android:key="lockable_fn" android:title="Fn" android:defaultValue="false"/> |
