chore(main): fix flag mismatch

I fixed the flag mismatch for the no fancy option.
This commit is contained in:
r3b00thx 2025-06-05 17:10:30 +03:00
parent a9d1808f4c
commit a26b35a4a1
No known key found for this signature in database
GPG key ID: D972C6E6008EA013

View file

@ -29,8 +29,8 @@ int main(int argc, char** argv, char** envp) {
static struct option long_options[] = {{"autocopy", no_argument, nullptr, 'a'},
{"format", required_argument, nullptr, 'f'},
{"help", no_argument, nullptr, 'h'},
{"no-fancy", no_argument, nullptr, 'n'},
{"notify", no_argument, nullptr, 'j'},
{"no-fancy", no_argument, nullptr, 'b'},
{"notify", no_argument, nullptr, 'n'},
{"render-inactive", no_argument, nullptr, 'r'},
{"no-zoom", no_argument, nullptr, 'z'},
{"no-fractional", no_argument, nullptr, 't'},