Skip to content

Commit

Permalink
Fix regression in FamilyType.ByGeometry Node (#3067)
Browse files Browse the repository at this point in the history
* CP fix for FamilyType.ByGeometry

* Update version / changelog
  • Loading branch information
saintentropy authored Apr 30, 2024
1 parent 44965a9 commit f2e5ff2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.17
0.6.18
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.6.18
* Fix regression on FamilyInstance.ByGeometry node

## 0.6.17
* Version back DynamoRevit to 3.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ public static Autodesk.Revit.DB.FamilySymbol ToRevitFamilyType(
var solids = GetSolidsFromElement(familyDocument.GetElement(importedElementId));

// delete imported sat
// first unpin the element to avoid an exception when deleting the SAT import
familyDocument.GetElement(importedElementId).Pinned = false;
familyDocument.Delete(importedElementId);
System.IO.File.Delete(tempFile);

Expand Down

0 comments on commit f2e5ff2

Please sign in to comment.