| 865 | } |
| 866 | |
| 867 | void XYCurveDock::rugOffsetChanged(double value) { |
| 868 | CONDITIONAL_RETURN_NO_LOCK; |
| 869 | |
| 870 | const double offset = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 871 | for (auto* curve : std::as_const(m_curvesList)) |
| 872 | curve->setRugOffset(offset); |
| 873 | } |
| 874 | |
| 875 | //************************************************************* |
| 876 | //*********** SLOTs for changes triggered in XYCurve ********** |
nothing calls this directly
no test coverage detected