Reducing xspacing and yspacing to 1 so touchscreen users have less mistyping.

Signed-off-by: hazardchem <hazardchem@disroot.org>
This commit is contained in:
hazardchem 2024-10-27 12:58:13 +10:00 committed by Hiltjo Posthuma
parent 92795b2a0a
commit 0e53d9d1a0
1 changed files with 2 additions and 2 deletions

View File

@ -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"
};