https://bugs.kde.org/show_bug.cgi?id=520006

rad <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from rad <[email protected]> ---
if i unset (disable) lossless compression, the next settings (default
optimization level of lossy compression) gets greyed (disabled) out. 
```
FormCard.FormSpinBoxDelegate {
    enabled: jpgLosslessCheck.checked          // ← bug?
    label: i18n("Default optimization level of lossy optimization:")
    value: Config.jpgLossyLevel
    from: 10
    to: 100
    ...
}
```
JPG backend is also inverted? 
```
        params1 = {
            u"--max="_s + QString::number(config->jpgLossyLevel()),
            u"-o"_s,
            u"-f"_s,
            u"--stdout"_s,
            image.path.toLocalFile(),
        };
        params2 = {
            u"-o"_s,
            u"-f"_s,
            u"--stdout"_s,
            image.path.toLocalFile(),
        };
co_await process.start(u"jpegoptim"_s, config->jpgLossless() ? params1 :
params2);
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to