Rename properties to fit PropertyEditor window

This commit is contained in:
WandererFan
2016-10-05 08:30:16 -04:00
committed by Yorik van Havre
parent c8f4de5fbc
commit 6b4352f79f
5 changed files with 31 additions and 34 deletions

View File

@@ -109,8 +109,8 @@ void GeometryObject::setScale(double value)
const std::vector<BaseGeom *> GeometryObject::getVisibleFaceEdges() const
{
std::vector<BaseGeom *> result;
bool smoothOK = m_parent->ShowSmoothLines.getValue();
bool seamOK = m_parent->ShowSeamLines.getValue();
bool smoothOK = m_parent->SmoothVisible.getValue();
bool seamOK = m_parent->SeamVisible.getValue();
for (auto& e:edgeGeom) {
if (e->visible) {
switch (e->classOfEdge) {