| 360 | } |
| 361 | |
| 362 | void ErrorBarWidget::capSizeChanged(double value) { |
| 363 | CONDITIONAL_RETURN_NO_LOCK; |
| 364 | |
| 365 | const double size = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 366 | for (auto* errorBar : m_errorBars) |
| 367 | errorBar->setCapSize(size); |
| 368 | } |
| 369 | |
| 370 | //************************************************************* |
| 371 | //*********** SLOTs for changes triggered in Line ************* |
nothing calls this directly
no test coverage detected