tree: allow floats to be pinned
This commit is contained in:
parent
3e6640f0ca
commit
65a66c2e26
28 changed files with 528 additions and 36 deletions
|
|
@ -116,6 +116,9 @@ impl ActionParser<'_> {
|
|||
"enable-float-above-fullscreen" => SetFloatAboveFullscreen(true),
|
||||
"disable-float-above-fullscreen" => SetFloatAboveFullscreen(false),
|
||||
"toggle-float-above-fullscreen" => ToggleFloatAboveFullscreen,
|
||||
"pin-float" => SetFloatPinned(true),
|
||||
"unpin-float" => SetFloatPinned(false),
|
||||
"toggle-float-pinned" => ToggleFloatPinned,
|
||||
_ => {
|
||||
return Err(
|
||||
ActionParserError::UnknownSimpleAction(string.to_string()).spanned(span)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue