| 2031 | } |
| 2032 | |
| 2033 | void ImageViewer::setGamma(float value) { |
| 2034 | value = round(value, 2.0f); |
| 2035 | mGammaSlider->set_value(value); |
| 2036 | mGammaLabel->set_caption(fmt::format("Gamma: {:+.2f}", value)); |
| 2037 | |
| 2038 | mImageCanvas->setGamma(value); |
| 2039 | } |
| 2040 | |
| 2041 | void ImageViewer::setBrightnessLimit(float max) { |
| 2042 | max = round(max, 2.0f); |