Reducing xspacing and yspacing to 1 so touchscreen users have less mistyping. - svkbd - simple virtual keyboard
  HTML git clone git://git.suckless.org/svkbd
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 0e53d9d1a0a1092552c4475f8c0e69da9ca99f84
   DIR parent 92795b2a0ac2f9c2a26bcdf8752e8f0ab7c11675
  HTML Author: hazardchem <hazardchem@disroot.org>
       Date:   Sun, 27 Oct 2024 12:58:13 +1000
       
       Reducing xspacing and yspacing to 1 so touchscreen users have less mistyping.
       
       Signed-off-by: hazardchem <hazardchem@disroot.org>
       
       Diffstat:
         M config.def.h                        |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git 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"
        };