We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 71486ec + 40b226c commit 47bd542Copy full SHA for 47bd542
1 file changed
src/GDTFManager.cpp
@@ -8719,11 +8719,12 @@ void GdtfFixture::ResolveDmxLogicalChanRefs(GdtfDmxChannelPtr dmxChnl)
8719
geometryName = geoRef->GetName();
8720
}
8721
8722
- // 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
8723
bool isNoFeatureAttribute = (attrPtr == fNoFeature) || (attributeName.EqualNoCase("NoFeature"));
8724
+ bool isDummyAttribute = attributeName.EqualNoCase("Dummy");
8725
8726
bool alreadyExists = false;
- if (!isNoFeatureAttribute)
8727
+ if (!isNoFeatureAttribute && !isDummyAttribute)
8728
{
8729
GdtfDmxModePtr mode = dmxChnl->GetParentMode();
8730
0 commit comments