Skip to content

Commit

Permalink
Fix on 'Fine' input on 'Construct Visibility' component.
Browse files Browse the repository at this point in the history
  • Loading branch information
kike-garbo committed Jul 11, 2024
1 parent 3502dd9 commit 5697779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/pages/_en/1.0/reference/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ group: Deployment & Configs
- Renamed 'Add Linear Dimension' component to 'Add Aligned Dimension'.
- Fix on 'Host Shape' component when updating.
- Fix on 'Element Workset' component when the document is not workshared.
- Fix on 'Fine' input on 'Construct Visibility' component.

{% endcapture %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected override void TrySolveInstance(IGH_DataAccess DA)
if (onlyWhenCut) value |= ERDB.FamilyElementVisibility.OnlyWhenCut;
if (coarse) value |= ERDB.FamilyElementVisibility.Coarse;
if (medium) value |= ERDB.FamilyElementVisibility.Medium;
if (fine) value |= ERDB.FamilyElementVisibility.FrontBack;
if (fine) value |= ERDB.FamilyElementVisibility.Fine;

DA.SetData(0, value);
}
Expand Down

0 comments on commit 5697779

Please sign in to comment.