wvkbd

git clone https://git.tarina.org/wvkbd
Log | Files | Refs | README | LICENSE

commit 3a241c8d2c5f077554f7f10218c89f305d0d5e73
parent 7a512fbca7ac6c202d3407084b5d6e1aba11b0d8
Author: Stacy Harper <contact@stacyharper.net>
Date:   Thu, 26 Aug 2021 22:17:25 +0200

Fix normal_height when using argument

This was overrided with rotation cause we dont save it

Diffstat:
Mmain.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.c b/main.c @@ -434,7 +434,7 @@ main(int argc, char **argv) { usage(argv[0]); exit(1); } - height = atoi(argv[++i]); + height = normal_height = atoi(argv[++i]); } else if (!strcmp(argv[i], "-L")) { if (i >= argc - 1) { usage(argv[0]);