tree: allow showing floating windows above fullscreen
This commit is contained in:
parent
f3179b7794
commit
0c02cb5033
17 changed files with 118 additions and 6 deletions
|
|
@ -113,6 +113,9 @@ impl ActionParser<'_> {
|
|||
"consume" => Forward(false),
|
||||
"enable-window-management" => EnableWindowManagement(true),
|
||||
"disable-window-management" => EnableWindowManagement(false),
|
||||
"enable-float-above-fullscreen" => SetFloatAboveFullscreen(true),
|
||||
"disable-float-above-fullscreen" => SetFloatAboveFullscreen(false),
|
||||
"toggle-float-above-fullscreen" => ToggleFloatAboveFullscreen,
|
||||
_ => {
|
||||
return Err(
|
||||
ActionParserError::UnknownSimpleAction(string.to_string()).spanned(span)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue