MCPcopy Create free account
hub / github.com/KDE/labplot / autoBinRangesChanged

Method autoBinRangesChanged

src/frontend/dockwidgets/HistogramDock.cpp:391–401  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

389}
390
391void HistogramDock::autoBinRangesChanged(bool state) {
392 ui.sbBinRangesMin->setEnabled(!state);
393 ui.sbBinRangesMax->setEnabled(!state);
394 ui.dteBinRangesMin->setEnabled(!state);
395 ui.dteBinRangesMax->setEnabled(!state);
396
397 CONDITIONAL_RETURN_NO_LOCK;
398
399 for (auto* hist : m_curvesList)
400 hist->setAutoBinRanges(state);
401}
402
403void HistogramDock::binRangesMinChanged(double value) {
404 CONDITIONAL_RETURN_NO_LOCK;

Callers

nothing calls this directly

Calls 2

setAutoBinRangesMethod · 0.80
setEnabledMethod · 0.45

Tested by

no test coverage detected