From 1a0627a262215772657455fb013b8bb636a2be40 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 26 Dec 2020 11:02:39 -0800 Subject: [PATCH] wezterm imgcat: fix name of no-preserve-aspect-ratio option --- wezterm/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wezterm/src/main.rs b/wezterm/src/main.rs index 1be8e33a0..6208d4624 100644 --- a/wezterm/src/main.rs +++ b/wezterm/src/main.rs @@ -130,7 +130,7 @@ struct ImgCatCommand { height: Option, /// Do not respect the aspect ratio. The default is to respect the aspect /// ratio - #[structopt(long = "preserve-aspect-ratio")] + #[structopt(long = "no-preserve-aspect-ratio")] no_preserve_aspect_ratio: bool, /// The name of the image file to be displayed. /// If omitted, will attempt to read it from stdin.