| 274 | } |
| 275 | |
| 276 | void KDEPlotDock::rugOffsetChanged(double value) { |
| 277 | CONDITIONAL_RETURN_NO_LOCK; |
| 278 | |
| 279 | const double offset = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 280 | for (auto* plot : m_plots) |
| 281 | plot->rugCurve()->setRugOffset(offset); |
| 282 | } |
| 283 | |
| 284 | //************************************************************* |
| 285 | //*********** SLOTs for changes triggered in KDEPlot ********** |
nothing calls this directly
no test coverage detected