Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
Penelope Gwen 2026-01-22 00:55:50 -08:00
commit 975aef0b0c

View file

@ -42,6 +42,7 @@ fn node_finder(mut node: Node) -> Option<Vec<Node>> {
node.nodes.append(&mut node.floating_nodes);
for node in node.nodes {
if let Some(mut nodes) = node_finder(node) {
node_list.append(&mut nodes);
}
}