Skip to content

Commit a7f0e41

Browse files
authored
Support polygon points with DynamicSelect (#14199)
Fixes #14195
1 parent 701ea79 commit a7f0e41

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

OMEdit/OMEditLIB/Annotations/ShapeAnnotation.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,7 @@ void ShapeAnnotation::updateDynamicSelect(double time)
10871087
updated |= mFillColor.update(time, pGraphicsView->getModelWidget()->getModelInstance());
10881088
updated |= mLineThickness.update(time, pGraphicsView->getModelWidget()->getModelInstance());
10891089
updated |= mArrowSize.update(time, pGraphicsView->getModelWidget()->getModelInstance());
1090+
updated |= mPoints.update(time, pGraphicsView->getModelWidget()->getModelInstance());
10901091
updated |= mExtent.update(time, pGraphicsView->getModelWidget()->getModelInstance());
10911092
updated |= mRadius.update(time, pGraphicsView->getModelWidget()->getModelInstance());
10921093
updated |= mStartAngle.update(time, pGraphicsView->getModelWidget()->getModelInstance());
@@ -1122,6 +1123,7 @@ void ShapeAnnotation::resetDynamicSelect()
11221123
mFillColor.resetDynamicToStatic();
11231124
mLineThickness.resetDynamicToStatic();
11241125
mArrowSize.resetDynamicToStatic();
1126+
mPoints.resetDynamicToStatic();
11251127
mExtent.resetDynamicToStatic();
11261128
mRadius.resetDynamicToStatic();
11271129
mStartAngle.resetDynamicToStatic();

0 commit comments

Comments
 (0)