diff options
| author | Jules Aguillon | 2023-01-22 23:13:30 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2023-01-22 23:20:04 +0100 |
| commit | f4032e3be98b7e70fcd384537c3191cf7542c735 (patch) | |
| tree | 9716d062dff04e1af3fccb475f23cf9da8769e8c /srcs/juloo.keyboard2/Config.java | |
| parent | f7f4d4d6aa9ae7a3791b493e5b5ce20eeef19bea (diff) | |
| download | unexpected-keyboard-f4032e3be98b7e70fcd384537c3191cf7542c735.tar.gz unexpected-keyboard-f4032e3be98b7e70fcd384537c3191cf7542c735.zip | |
Remove the modulated repeat
It allowed to modulate the repeat speed of some keys (arrow, backspace,
delete) by move the finger farther or closer to the key.
In practice, this wasn't pratical and doesn't seem popular. It is
removed in favor of a better mechanism for moving the cursor.
Diffstat (limited to 'srcs/juloo.keyboard2/Config.java')
| -rw-r--r-- | srcs/juloo.keyboard2/Config.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java index fbb542a..b8580e6 100644 --- a/srcs/juloo.keyboard2/Config.java +++ b/srcs/juloo.keyboard2/Config.java @@ -41,7 +41,6 @@ final class Config public int keyboardOpacity; // 0 - 255 public int keyOpacity; // 0 - 255 public int keyActivatedOpacity; // 0 - 255 - public boolean preciseRepeat; public boolean double_tap_lock_shift; public float characterSize; // Ratio public int accents; // Values are R.values.pref_accents_v_* @@ -142,7 +141,6 @@ final class Config horizontal_margin = get_dip_pref(dm, oriented_pref("horizontal_margin"), res.getDimension(R.dimen.horizontal_margin)); - preciseRepeat = _prefs.getBoolean("precise_repeat", true); double_tap_lock_shift = _prefs.getBoolean("lock_double_tap", false); characterSize = _prefs.getFloat("character_size", 1.f) |
