Skip to content

Commit

Permalink
missed a semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyuri authored Dec 7, 2024
1 parent 1d45a6e commit 8949105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zellij-utils/src/kdl/kdl_layout_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1592,7 +1592,7 @@ impl<'a> KdlLayoutParser<'a> {
}
// 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)
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,
Expand Down

0 comments on commit 8949105

Please sign in to comment.