Compare commits

...

2 Commits

Author SHA1 Message Date
Adam Hathcock 600c361d9a Merge pull request #901 from specklesystems/dim/rhino-extra-layer-name-fix
.NET Build and Publish / build-windows (push) Has been cancelled
.NET Build and Publish / build-linux (push) Has been cancelled
.NET Build and Publish / deploy-installers (push) Has been cancelled
Dim/rhino extra layer name fix
2025-06-06 11:09:23 +01:00
Dimitrie Stefanescu e8cff89433 fix: handles parenthesis in layer names 2025-06-06 10:57:17 +01:00
@@ -83,7 +83,7 @@ public class RhinoLayerBaker : TraversalContextUnpacker
.Select(o => string.IsNullOrWhiteSpace(o.name) ? "unnamed" : o.name)
.Prepend(baseLayerName);
var layerFullName = string.Join(s_pathSeparator, layerPath);
var layerFullName = CleanLayerName(string.Join(s_pathSeparator, layerPath));
if (_hostLayerCache.TryGetValue(layerFullName, out int existingLayerIndex))
{