Fix bug. Undo Union details hide piece node points.
This commit is contained in:
parent
4665bc16e0
commit
1b57580c15
|
@ -2,6 +2,7 @@
|
|||
- Placeholder %size% has incorrect value.
|
||||
- Values for waist and hip swapped for individual measurements.
|
||||
- Fix crash when edit a group operation notes.
|
||||
- Fix bug. Undo Union details hide piece node points.
|
||||
|
||||
# Version 0.7.43 Jan 31, 2021
|
||||
- Improve Windows installer. Avoid crashing on checking if a program is still running.
|
||||
|
|
|
@ -2021,7 +2021,7 @@ quint32 VToolSeamAllowance::DuplicateNode(const VPieceNode &node, const VToolSea
|
|||
{
|
||||
case (Tool::NodePoint):
|
||||
{
|
||||
const QSharedPointer<VPointF> point = qSharedPointerDynamicCast<VPointF>(gobj);
|
||||
auto point = QSharedPointer<VPointF>(new VPointF(*qSharedPointerDynamicCast<VPointF>(gobj).data()));
|
||||
initNodeData.id = VAbstractTool::CreateNodePoint(initData.data, gobj->getIdObject(), point);
|
||||
VNodePoint::Create(initNodeData);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue
Block a user