diff -r 593a658cba8e -r 73e448b2943d src/objecttypes/conditionaledge.cpp --- a/src/objecttypes/conditionaledge.cpp Thu Oct 03 11:45:44 2019 +0300 +++ b/src/objecttypes/conditionaledge.cpp Thu Oct 03 23:44:28 2019 +0300 @@ -40,3 +40,10 @@ return Edge::setProperty(property, value); } } + +QString modelobjects::ConditionalEdge::textRepresentation() const +{ + return Edge::textRepresentation() + format("%1 %2", + vertexToStringParens(controlPoint_1), + vertexToStringParens(controlPoint_2)); +}