feat: IPC for get_visible, set_visible, new bar name config option
This commit is contained in:
committed by
Jake Stanger
parent
2f8443f349
commit
2ccb2633c6
@@ -37,4 +37,18 @@ pub enum Command {
|
||||
/// The path to the sheet.
|
||||
path: PathBuf,
|
||||
},
|
||||
|
||||
/// Set the visibility of the bar with the given name.
|
||||
SetVisible {
|
||||
///Bar name to target.
|
||||
bar_name: String,
|
||||
/// The visibility status.
|
||||
visible: bool,
|
||||
},
|
||||
|
||||
/// Get the visibility of the bar with the given name.
|
||||
GetVisible {
|
||||
/// Bar name to target.
|
||||
bar_name: String,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user