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

This commit is contained in:
Craig Barnes 2020-11-22 16:40:15 +00:00 committed by Daniel Eklöf
parent 8bd711c33b
commit 20910abf36
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 2 additions and 1 deletions

View file

@ -38,6 +38,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.
## 1.5.3

View file

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