| 258 | } |
| 259 | |
| 260 | void KDEPlotDock::rugLengthChanged(double value) { |
| 261 | CONDITIONAL_RETURN_NO_LOCK; |
| 262 | |
| 263 | const double length = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 264 | for (auto* plot : m_plots) |
| 265 | plot->rugCurve()->setRugLength(length); |
| 266 | } |
| 267 | |
| 268 | void KDEPlotDock::rugWidthChanged(double value) { |
| 269 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected