mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-22 05:35:10 +00:00
Field name fix, clean up project paths
This commit is contained in:
@@ -198,7 +198,7 @@ fn construct_initial_tree(
|
||||
construct_project_node(
|
||||
&mut context,
|
||||
None,
|
||||
&project.name,
|
||||
"",
|
||||
&project.name,
|
||||
&project.tree,
|
||||
);
|
||||
@@ -258,7 +258,12 @@ fn construct_instance_node(
|
||||
let id = insert_or_create_tree(context, parent_instance_id, instance);
|
||||
|
||||
for (child_name, child_project_node) in &project_node.children {
|
||||
let child_path = format!("{}/{}", instance_path, child_name);
|
||||
let child_path = if instance_path.is_empty() {
|
||||
child_name.clone()
|
||||
} else {
|
||||
format!("{}/{}", instance_path, child_name)
|
||||
};
|
||||
|
||||
construct_project_node(context, Some(id), &child_path, child_name, child_project_node);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user