1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 10:41:03 +02:00

fix(cli): set-visible command causing panic

This commit is contained in:
Jake Stanger 2023-07-16 18:47:44 +01:00
parent 2a8313a9b4
commit c582bc3390
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61

View file

@ -43,6 +43,7 @@ pub enum Command {
///Bar name to target. ///Bar name to target.
bar_name: String, bar_name: String,
/// The visibility status. /// The visibility status.
#[arg(short, long)]
visible: bool, visible: bool,
}, },