| 559 | } |
| 560 | |
| 561 | void DatapickerImageWidget::valueSpanChanged(int lowerLimit, int upperLimit) { |
| 562 | CONDITIONAL_LOCK_RETURN; |
| 563 | |
| 564 | auto settings = m_image->settings(); |
| 565 | settings.valueThresholdHigh = upperLimit; |
| 566 | settings.valueThresholdLow = lowerLimit; |
| 567 | for (auto* image : m_imagesList) |
| 568 | image->setSettings(settings); |
| 569 | } |
| 570 | |
| 571 | void DatapickerImageWidget::plotImageTypeChanged(int index) { |
| 572 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected