| 576 | } |
| 577 | |
| 578 | void DatapickerImageWidget::rotationChanged(double value) { |
| 579 | CONDITIONAL_RETURN_NO_LOCK; |
| 580 | |
| 581 | for (auto* image : m_imagesList) |
| 582 | image->setRotationAngle(value); |
| 583 | } |
| 584 | |
| 585 | void DatapickerImageWidget::minSegmentLengthChanged(int value) { |
| 586 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected