Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
More sturdy fix for #257
Browse files Browse the repository at this point in the history
  • Loading branch information
shana committed Sep 1, 2017
1 parent c9711a9 commit dbfa282
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void TreeNode(FileTreeNode node)
{
var parentLabel = node.Label;
var childLabel = node.Children.First().Label;
isFolderForMeta = childLabel.EndsWith(".meta");
isFolderForMeta = childLabel.StartsWith(parentLabel) && childLabel.EndsWith(".meta");
}

GUILayout.BeginHorizontal();
Expand Down

0 comments on commit dbfa282

Please sign in to comment.