mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
Everywhere: Remove uneeded short option argument where possible
This commit is contained in:
parent
88b343061e
commit
1ec6399c00
Notes:
sideshowbarker
2024-07-17 18:46:30 +09:00
Author: https://github.com/shannonbooth
Commit: 1ec6399c00
Pull-request: https://github.com/SerenityOS/serenity/pull/24047
21 changed files with 41 additions and 41 deletions
|
@ -244,13 +244,13 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
args_parser.add_option(reencode_out_path, "Reencode ICC profile to this path", "reencode-to", 0, "FILE");
|
||||
|
||||
bool debug_roundtrip = false;
|
||||
args_parser.add_option(debug_roundtrip, "Check how many u8 colors roundtrip losslessly through the profile. For debugging.", "debug-roundtrip", 0);
|
||||
args_parser.add_option(debug_roundtrip, "Check how many u8 colors roundtrip losslessly through the profile. For debugging.", "debug-roundtrip");
|
||||
|
||||
bool measure = false;
|
||||
args_parser.add_option(measure, "For RGB ICC profiles, print perceptually smallest and largest color step", "measure", 0);
|
||||
args_parser.add_option(measure, "For RGB ICC profiles, print perceptually smallest and largest color step", "measure");
|
||||
|
||||
bool force_print = false;
|
||||
args_parser.add_option(force_print, "Print profile even when writing ICC files", "print", 0);
|
||||
args_parser.add_option(force_print, "Print profile even when writing ICC files", "print");
|
||||
|
||||
args_parser.parse(arguments);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue