Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Elements.MEP/src/Fittings/StraightSegment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,11 @@ public override bool PropagateAdditionalTransform(Transform transform, Transform

if (leftover.IsZero())
{
return false;
// returning true here is a hack to let fittings with multiple
// branches with different offsets continue to propogate their
// transforms. If this returns false it seems that the other
// branches aren't checked.
return true;
}
else
{
Expand Down
Loading