"General"-tab
| 312 | |
| 313 | // "General"-tab |
| 314 | void HistogramDock::typeChanged(int index) { |
| 315 | CONDITIONAL_LOCK_RETURN; |
| 316 | |
| 317 | auto histogramType = Histogram::Type(index); |
| 318 | for (auto* curve : m_curvesList) |
| 319 | curve->setType(histogramType); |
| 320 | } |
| 321 | |
| 322 | void HistogramDock::dataColumnChanged(const QModelIndex& index) { |
| 323 | CONDITIONAL_LOCK_RETURN; |