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
5 changes: 3 additions & 2 deletions src/GDTFManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8723,11 +8723,12 @@ void GdtfFixture::ResolveDmxLogicalChanRefs(GdtfDmxChannelPtr dmxChnl)
geometryName = geoRef->GetName();
}

// Allow NoFeature attributes to be linked multiple times to the same geometry
// Allow NoFeature and Dummy attributes to be linked multiple times to the same geometry
bool isNoFeatureAttribute = (attrPtr == fNoFeature) || (attributeName.EqualNoCase("NoFeature"));
bool isDummyAttribute = attributeName.EqualNoCase("Dummy");

bool alreadyExists = false;
if (!isNoFeatureAttribute)
if (!isNoFeatureAttribute && !isDummyAttribute)
{
GdtfDmxModePtr mode = dmxChnl->GetParentMode();

Expand Down