"Margin Plots"-Tab
| 430 | |
| 431 | //"Margin Plots"-Tab |
| 432 | void HistogramDock::rugEnabledChanged(bool state) { |
| 433 | CONDITIONAL_LOCK_RETURN; |
| 434 | |
| 435 | for (auto* curve : std::as_const(m_curvesList)) |
| 436 | curve->setRugEnabled(state); |
| 437 | } |
| 438 | |
| 439 | void HistogramDock::rugLengthChanged(double value) const { |
| 440 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected