| 453 | } |
| 454 | |
| 455 | void HistogramDock::rugOffsetChanged(double value) const { |
| 456 | CONDITIONAL_RETURN_NO_LOCK; |
| 457 | |
| 458 | const double offset = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 459 | for (auto* curve : std::as_const(m_curvesList)) |
| 460 | curve->setRugOffset(offset); |
| 461 | } |
| 462 | |
| 463 | //************************************************************* |
| 464 | //*********** SLOTs for changes triggered in Histogram ******* |
nothing calls this directly
no test coverage detected