| 529 | } |
| 530 | |
| 531 | void DatapickerImageWidget::foregroundSpanChanged(int lowerLimit, int upperLimit) { |
| 532 | CONDITIONAL_LOCK_RETURN; |
| 533 | |
| 534 | auto settings = m_image->settings(); |
| 535 | settings.foregroundThresholdHigh = upperLimit; |
| 536 | settings.foregroundThresholdLow = lowerLimit; |
| 537 | for (auto* image : m_imagesList) |
| 538 | image->setSettings(settings); |
| 539 | } |
| 540 | |
| 541 | void DatapickerImageWidget::hueSpanChanged(int lowerLimit, int upperLimit) { |
| 542 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected