diff --git a/src/Mod/TechDraw/Gui/DimensionValidators.cpp b/src/Mod/TechDraw/Gui/DimensionValidators.cpp index 14d1624fee..0fd3232823 100644 --- a/src/Mod/TechDraw/Gui/DimensionValidators.cpp +++ b/src/Mod/TechDraw/Gui/DimensionValidators.cpp @@ -251,6 +251,12 @@ bool TechDraw::checkGeometryOccurences(StringVector subNames, GeomCountMap keyed } } + //hybrid dims (vertex-edge) can skip this check + if (foundCounts.size() > 1) { + //this is a hybrid dimension + return true; + } + //check found geometry counts against required counts for (auto& foundItem : foundCounts) { std::string currentKey = foundItem.first;