mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
32 lines
1.5 KiB
Diff
32 lines
1.5 KiB
Diff
diff --git a/zellij-utils/src/kdl/kdl_layout_parser.rs b/zellij-utils/src/kdl/kdl_layout_parser.rs
|
|
index c38c0146..d44440a7 100644
|
|
--- a/zellij-utils/src/kdl/kdl_layout_parser.rs
|
|
+++ b/zellij-utils/src/kdl/kdl_layout_parser.rs
|
|
@@ -1607,6 +1607,10 @@ impl<'a> KdlLayoutParser<'a> {
|
|
floating_pane.add_cwd_to_layout(&cwd_prefix);
|
|
}
|
|
}
|
|
+ // hide_floating_panes on the tab_layout takes precedence over the hide_floating_panes on the tab_template
|
|
+ tab_layout.hide_floating_panes =
|
|
+ kdl_get_bool_property_or_child_value!(kdl_node, "hide_floating_panes")
|
|
+ .unwrap_or(tab_layout.hide_floating_panes);
|
|
tab_layout.external_children_index = None;
|
|
Ok((
|
|
is_focused,
|
|
@@ -1671,6 +1675,8 @@ impl<'a> KdlLayoutParser<'a> {
|
|
let mut tab_floating_children = vec![];
|
|
let mut external_children_index = None;
|
|
let mut children_index_offset = 0;
|
|
+ let hide_floating_panes =
|
|
+ kdl_get_bool_property_or_child_value!(kdl_node, "hide_floating_panes").unwrap_or(false);
|
|
let is_part_of_stack = false;
|
|
if let Some(children) = kdl_children_nodes!(kdl_node) {
|
|
for (i, child) in children.iter().enumerate() {
|
|
@@ -1721,6 +1727,7 @@ impl<'a> KdlLayoutParser<'a> {
|
|
children_split_direction,
|
|
children: tab_children,
|
|
external_children_index,
|
|
+ hide_floating_panes,
|
|
..Default::default()
|
|
},
|
|
tab_floating_children,
|