We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 201e18e + ddc5baf commit 0f8b2bfCopy full SHA for 0f8b2bf
1 file changed
src/UnityExtension/Assets/Editor/GitHub.Unity/UI/ChangesetTreeView.cs
@@ -123,7 +123,7 @@ private void TreeNode(FileTreeNode node)
123
{
124
var parentLabel = node.Label;
125
var childLabel = node.Children.First().Label;
126
- isFolderForMeta = childLabel.EndsWith(".meta");
+ isFolderForMeta = childLabel.StartsWith(parentLabel) && childLabel.EndsWith(".meta");
127
}
128
129
GUILayout.BeginHorizontal();
0 commit comments