| 549 | } |
| 550 | |
| 551 | void DatapickerImageWidget::saturationSpanChanged(int lowerLimit, int upperLimit) { |
| 552 | CONDITIONAL_LOCK_RETURN; |
| 553 | |
| 554 | auto settings = m_image->settings(); |
| 555 | settings.saturationThresholdHigh = upperLimit; |
| 556 | settings.saturationThresholdLow = lowerLimit; |
| 557 | for (auto* image : m_imagesList) |
| 558 | image->setSettings(settings); |
| 559 | } |
| 560 | |
| 561 | void DatapickerImageWidget::valueSpanChanged(int lowerLimit, int upperLimit) { |
| 562 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected