diff --git a/src/entity/RPolylineEntity.cpp b/src/entity/RPolylineEntity.cpp index 563dc39b80..09c658ae28 100644 --- a/src/entity/RPolylineEntity.cpp +++ b/src/entity/RPolylineEntity.cpp @@ -199,7 +199,10 @@ QPair RPolylineEntity::getProperty( } else if (propertyTypeId == PropertyAngleN) { QVariant v; v.setValue(data.getVertexAngles()); - return qMakePair(v, RPropertyAttributes(RPropertyAttributes::List|RPropertyAttributes::Angle)); + return qMakePair(v, RPropertyAttributes(RPropertyAttributes::List | + RPropertyAttributes::Angle | + RPropertyAttributes::Redundant | + RPropertyAttributes::ReadOnly)); } else if (RPolyline::hasProxy() && propertyTypeId == PropertyStartWidthN) { QVariant v; v.setValue(data.startWidths);