Skip to content

Commit 370698d

Browse files
committed
fix static cast type
1 parent cab2aed commit 370698d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/libs/vtools/tools/nodeDetails/vnodepoint.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ void VNodePoint::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
356356
actionSecondEdgeRight = angleTypeMenu->addAction(QIcon(), tr("Second edge right angle"));
357357

358358
// Set checkmark for current Seam Allowance corner type
359-
switch (static_cast<int>(node.GetAngleType()))
359+
switch (static_cast<PieceNodeAngle>(node.GetAngleType()))
360360
{
361361
case (PieceNodeAngle::ByLength):
362362
{

0 commit comments

Comments
 (0)