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