By default internal paths should be in draw mode.

--HG--
branch : feature
This commit is contained in:
Roman Telezhynskyi 2017-07-19 10:35:00 +03:00
parent 9ae393a462
commit 45f860e9b3
2 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ public:
VLayoutPiecePathData()
: m_points(),
m_penStyle(Qt::SolidLine),
m_cut(true)
m_cut(false)
{}
VLayoutPiecePathData(const QVector<QPointF> points, bool cut, Qt::PenStyle penStyle)

View file

@ -47,7 +47,7 @@ public:
m_type(PiecePathType::Unknown),
m_name(),
m_penType(Qt::SolidLine),
m_cut(true)
m_cut(false)
{}
explicit VPiecePathData(PiecePathType type)
@ -55,7 +55,7 @@ public:
m_type(type),
m_name(),
m_penType(Qt::SolidLine),
m_cut(true)
m_cut(false)
{}
VPiecePathData(const VPiecePathData &path)