From 0e53d9d1a0a1092552c4475f8c0e69da9ca99f84 Mon Sep 17 00:00:00 2001 From: hazardchem Date: Sun, 27 Oct 2024 12:58:13 +1000 Subject: [PATCH] Reducing xspacing and yspacing to 1 so touchscreen users have less mistyping. Signed-off-by: hazardchem --- config.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index d3864c0..e25e6e8 100644 --- a/config.def.h +++ b/config.def.h @@ -8,8 +8,8 @@ static double repeat_delay = 0.75; static int scan_rate = 50; /* one row of keys takes up 1/x of the screen height */ static int heightfactor = 14; -static int xspacing = 5; -static int yspacing = 5; +static int xspacing = 1; +static int yspacing = 1; static const char *defaultfonts[] = { "DejaVu Sans:bold:size=22" };