| 232 | } |
| 233 | |
| 234 | void LuminanceRangeWidget::decreaseExposure() { |
| 235 | windowMin += exposureStep; |
| 236 | windowMax += exposureStep; |
| 237 | update(); |
| 238 | emit updateRangeWindow(); |
| 239 | } |
| 240 | |
| 241 | void LuminanceRangeWidget::extendRange() { |
| 242 | if (windowMax - windowMin > 10) return; |
no outgoing calls
no test coverage detected