Skip to content

Commit

Permalink
removal of grid segments brought back
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelbaran committed Jun 12, 2024
1 parent 94bed57 commit 9c554b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Revit_Core_Adapter/CRUD/Read.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public static List<IBHoMObject> Read(Document document, Transform transform, Lis
worksetPrefilter = document.OpenWorksetsPrefilter();

// Get elementIds from all requests
List<ElementId> elementIds = new LogicalOrRequest { Requests = requests }.ElementIds(document, pullConfig.Discipline, settings, worksetPrefilter).ToList();
List<ElementId> elementIds = new LogicalOrRequest { Requests = requests }.ElementIds(document, pullConfig.Discipline, settings, worksetPrefilter).RemoveGridSegmentIds(document).ToList();

// Get elementIds of nested elements if requested
if (pullConfig.IncludeNestedElements)
Expand Down

0 comments on commit 9c554b9

Please sign in to comment.