mirror of
https://github.com/jjsullivan5196/wvkbd.git
synced 2025-08-29 15:22:07 +02:00
Fix normal_height when using argument
This was overrided with rotation cause we dont save it
This commit is contained in:
committed by
John Sullivan
parent
7a512fbca7
commit
3a241c8d2c
2
main.c
2
main.c
@@ -434,7 +434,7 @@ main(int argc, char **argv) {
|
|||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
height = atoi(argv[++i]);
|
height = normal_height = atoi(argv[++i]);
|
||||||
} else if (!strcmp(argv[i], "-L")) {
|
} else if (!strcmp(argv[i], "-L")) {
|
||||||
if (i >= argc - 1) {
|
if (i >= argc - 1) {
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
|
Reference in New Issue
Block a user