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 af9a6950e2
commit bc2ac76fc5
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) {