| 266 | } |
| 267 | |
| 268 | void KDEPlotDock::rugWidthChanged(double value) { |
| 269 | CONDITIONAL_RETURN_NO_LOCK; |
| 270 | |
| 271 | const double width = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 272 | for (auto* plot : m_plots) |
| 273 | plot->rugCurve()->setRugWidth(width); |
| 274 | } |
| 275 | |
| 276 | void KDEPlotDock::rugOffsetChanged(double value) { |
| 277 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected