| 237 | } |
| 238 | |
| 239 | void ValueWidget::distanceChanged(double v) { |
| 240 | CONDITIONAL_RETURN_NO_LOCK; |
| 241 | |
| 242 | for (auto* value : m_values) |
| 243 | value->setDistance(Worksheet::convertToSceneUnits(v, Worksheet::Unit::Point)); |
| 244 | } |
| 245 | |
| 246 | void ValueWidget::rotationChanged(int v) { |
| 247 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected