From 880e5dde3bcb820bf472da30f350d7dae7d1b2e9 Mon Sep 17 00:00:00 2001 From: Nicolas Mellado Date: Fri, 26 Jan 2024 13:04:12 +0100 Subject: [PATCH] remove -h and -w short options (conflict with help) --- src/cli.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.cpp b/src/cli.cpp index ef27c02..b3c3116 100644 --- a/src/cli.cpp +++ b/src/cli.cpp @@ -58,10 +58,10 @@ PoncaPlotCLI::run(int argc, char **argv) { { program.add_argument("-o", "--output") .help("output file (image)"); - program.add_argument("-w", "--width") + program.add_argument("--width") .help("output image width (in pixels)") .default_value(params.output.width); - program.add_argument("-h", "--height") + program.add_argument("--height") .help("output image height (in pixels)") .default_value(params.output.height); }