tree: allow floats to be pinned
This commit is contained in:
parent
3e6640f0ca
commit
65a66c2e26
28 changed files with 528 additions and 36 deletions
|
|
@ -546,6 +546,16 @@ pub enum ClientMessage<'a> {
|
|||
above: bool,
|
||||
},
|
||||
GetFloatAboveFullscreen,
|
||||
GetFloatPinned {
|
||||
seat: Seat,
|
||||
},
|
||||
SetFloatPinned {
|
||||
seat: Seat,
|
||||
pinned: bool,
|
||||
},
|
||||
SetShowFloatPinIcon {
|
||||
show: bool,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
|
|
@ -697,6 +707,9 @@ pub enum Response {
|
|||
GetFloatAboveFullscreen {
|
||||
above: bool,
|
||||
},
|
||||
GetFloatPinned {
|
||||
pinned: bool,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue