| 1093 | } |
| 1094 | |
| 1095 | void LabelWidget::rotationChanged(int value) { |
| 1096 | CONDITIONAL_LOCK_RETURN; |
| 1097 | |
| 1098 | for (auto* label : m_labelsList) |
| 1099 | label->setRotationAngle(value); |
| 1100 | } |
| 1101 | |
| 1102 | void LabelWidget::offsetXChanged(double value) { |
| 1103 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected