"Margin Plots"-Tab
| 548 | |
| 549 | //"Margin Plots"-Tab |
| 550 | void BoxPlotDock::rugEnabledChanged(bool state) { |
| 551 | CONDITIONAL_LOCK_RETURN; |
| 552 | |
| 553 | for (auto* curve : std::as_const(m_boxPlots)) |
| 554 | curve->setRugEnabled(state); |
| 555 | } |
| 556 | |
| 557 | void BoxPlotDock::rugLengthChanged(double value) const { |
| 558 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected