From 7a951b48303c76e6fad18c63f9105c3c3ac94d12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Wed, 15 May 2024 14:44:38 +0200 Subject: [PATCH] fix envelope list --max-width arg The --max-width has been accidentally renamed --table-max-width. This commit revert the thing. --- src/email/envelope/command/list.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/email/envelope/command/list.rs b/src/email/envelope/command/list.rs index a2e5425..cbee4c2 100644 --- a/src/email/envelope/command/list.rs +++ b/src/email/envelope/command/list.rs @@ -49,7 +49,8 @@ pub struct ListEnvelopesCommand { /// This argument will force the table not to exceed the given /// width in pixels. Columns may shrink with ellipsis in order to /// fit the width. - #[arg(long, short = 'w', name = "table_max_width", value_name = "PIXELS")] + #[arg(long = "max-width", short = 'w')] + #[arg(name = "table_max_width", value_name = "PIXELS")] pub table_max_width: Option, /// The list envelopes filter and sort query.