1
0
Fork 0
forked from wry/wry

config: allow disabling the built-in bar

This commit is contained in:
Julian Orth 2025-07-17 22:31:16 +02:00
parent 224f5380fe
commit 08e7e01d0e
16 changed files with 156 additions and 14 deletions

View file

@ -721,6 +721,10 @@ pub enum ClientMessage<'a> {
GetContentType {
window: Window,
},
SetShowBar {
show: bool,
},
GetShowBar,
}
#[derive(Serialize, Deserialize, Debug)]
@ -950,6 +954,9 @@ pub enum Response {
GetContentType {
kind: ContentType,
},
GetShowBar {
show: bool,
},
}
#[derive(Serialize, Deserialize, Debug)]