TD: Remove calls to now-empty clearLineSets() method

This commit is contained in:
Chris Hennes
2025-06-22 18:57:39 -05:00
parent 41af5a8e74
commit d2ce7f8145
2 changed files with 0 additions and 2 deletions

View File

@@ -287,7 +287,6 @@ void QGIViewPart::drawAllFaces(void)
std::vector<LineSet> lineSets = fGeom->getTrimmedLines(iFace);
if (!lineSets.empty()) {
// this face has geometric hatch lines
newFace->clearLineSets();
for (auto& ls : lineSets) {
newFace->addLineSet(ls);
}

View File

@@ -112,7 +112,6 @@ void QGIViewSection::drawSectionFace()
newFace->setLineWeight(sectionVp->WeightPattern.getValue());
std::vector<TechDraw::LineSet> lineSets = section->getDrawableLines(i);
if (!lineSets.empty()) {
newFace->clearLineSets();
for (auto& ls: lineSets) {
newFace->addLineSet(ls);
}