| 382 | } |
| 383 | |
| 384 | void HistogramDock::binWidthChanged(double width) { |
| 385 | CONDITIONAL_RETURN_NO_LOCK; |
| 386 | |
| 387 | for (auto* curve : m_curvesList) |
| 388 | curve->setBinWidth(width); |
| 389 | } |
| 390 | |
| 391 | void HistogramDock::autoBinRangesChanged(bool state) { |
| 392 | ui.sbBinRangesMin->setEnabled(!state); |
nothing calls this directly
no test coverage detected