Skip to content

Commit

Permalink
fix(view:tree): Invert default collapse flag for open_signal (fix #549)
Browse files Browse the repository at this point in the history
  • Loading branch information
SkepticMystic committed May 2, 2024
1 parent 892eb0c commit 7134c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/side_views/TreeView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
show_node_options,
field_group_labels,
} = plugin.settings.views.side.tree;
let open_signal: boolean | null = plugin.settings.views.side.tree.collapse;
let open_signal: boolean | null = !plugin.settings.views.side.tree.collapse;
const base_traversal = (attr: EdgeAttrFilters) =>
Traverse.build_tree(
Expand Down

0 comments on commit 7134c5d

Please sign in to comment.