mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50:19 +00:00
fix envelope list --max-width arg
The --max-width has been accidentally renamed --table-max-width. This commit revert the thing.
This commit is contained in:
parent
f3151c3f84
commit
7a951b4830
1 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,8 @@ pub struct ListEnvelopesCommand {
|
||||||
/// This argument will force the table not to exceed the given
|
/// This argument will force the table not to exceed the given
|
||||||
/// width in pixels. Columns may shrink with ellipsis in order to
|
/// width in pixels. Columns may shrink with ellipsis in order to
|
||||||
/// fit the width.
|
/// 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<u16>,
|
pub table_max_width: Option<u16>,
|
||||||
|
|
||||||
/// The list envelopes filter and sort query.
|
/// The list envelopes filter and sort query.
|
||||||
|
|
Loading…
Reference in a new issue