| 539 | } |
| 540 | |
| 541 | void DatapickerImageWidget::hueSpanChanged(int lowerLimit, int upperLimit) { |
| 542 | CONDITIONAL_LOCK_RETURN; |
| 543 | |
| 544 | auto settings = m_image->settings(); |
| 545 | settings.hueThresholdHigh = upperLimit; |
| 546 | settings.hueThresholdLow = lowerLimit; |
| 547 | for (auto* image : m_imagesList) |
| 548 | image->setSettings(settings); |
| 549 | } |
| 550 | |
| 551 | void DatapickerImageWidget::saturationSpanChanged(int lowerLimit, int upperLimit) { |
| 552 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected