From 47249568620a4b628a7a67dc07d55deff503339b Mon Sep 17 00:00:00 2001 From: Waveplate Date: Mon, 21 Apr 2025 21:10:49 -0700 Subject: [PATCH] bugfix: collision between height and help --- src/args.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/args.rs b/src/args.rs index ce70593..5d99f6f 100644 --- a/src/args.rs +++ b/src/args.rs @@ -25,11 +25,11 @@ pub struct Args { pub image: String, /// output image width in columns - #[arg(short, long)] + #[arg(short = 'w', long)] pub width: Option, /// output image height in rows - #[arg(short, long)] + #[arg(short = 'H', long)] pub height: Option, /// scaling factors (x:y, e.g., "2:2")