client: fix handling of "-m" command-line flag

This commit is contained in:
Craig Barnes 2020-11-22 16:40:15 +00:00
parent e9e3e076fc
commit 82caa7bd04
2 changed files with 2 additions and 1 deletions

View file

@ -88,6 +88,7 @@
* Key mappings for key combinations with `shift`+`tab`
(https://codeberg.org/dnkl/foot/issues/210).
* Key mappings for key combinations with `alt`+`return`.
* `footclient` `-m` (`--maximized`) flag being ignored.
### Security

View file

@ -100,7 +100,7 @@ main(int argc, char *const *argv)
login_shell = true;
break;
case ',':
case 'm':
maximized = true;
fullscreen = false;
break;