From c582bc33905702a9ebe323e6dfa9413485f48fb7 Mon Sep 17 00:00:00 2001 From: Jake Stanger Date: Sun, 16 Jul 2023 18:47:44 +0100 Subject: [PATCH] fix(cli): `set-visible` command causing panic --- src/ipc/commands.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ipc/commands.rs b/src/ipc/commands.rs index 0367250..af2c9cb 100644 --- a/src/ipc/commands.rs +++ b/src/ipc/commands.rs @@ -43,6 +43,7 @@ pub enum Command { ///Bar name to target. bar_name: String, /// The visibility status. + #[arg(short, long)] visible: bool, },