abouttreesummaryrefslogcommitdiff
diff options
context:
space:
mode:
authorJules Aguillon2025-01-11 14:24:10 +0100
committerJules Aguillon2025-01-11 14:24:10 +0100
commitc4e2b446e5d91fa122f9414818fd844aa15971fe (patch)
tree0e5b5019854d0dc49eeb340e16a187a2ec19a562
parent7b8f739400be790e32a883f0348b5c9f03f3a6ec (diff)
downloadunexpected-keyboard-c4e2b446e5d91fa122f9414818fd844aa15971fe.tar.gz
unexpected-keyboard-c4e2b446e5d91fa122f9414818fd844aa15971fe.zip
Make the space bar slider slightly less sensitive
-rw-r--r--srcs/juloo.keyboard2/Config.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java
index 4680f46..4972034 100644
--- a/srcs/juloo.keyboard2/Config.java
+++ b/srcs/juloo.keyboard2/Config.java
@@ -131,7 +131,7 @@ public final class Config
float swipe_scaling = Math.min(dm.widthPixels, dm.heightPixels) / 10.f * dpi_ratio;
float swipe_dist_value = Float.valueOf(_prefs.getString("swipe_dist", "15"));
swipe_dist_px = swipe_dist_value / 25.f * swipe_scaling;
- slide_step_px = 0.2f * swipe_scaling;
+ slide_step_px = 0.25f * swipe_scaling;
vibrate_custom = _prefs.getBoolean("vibrate_custom", false);
vibrate_duration = _prefs.getInt("vibrate_duration", 20);
longPressTimeout = _prefs.getInt("longpress_timeout", 600);