| Summary: | Random resets of several configuration values | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Victor Engmark <kde.org> |
| Component: | Plugin-RawImport-Native | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | normal | CC: | caulier.gilles, metzpinguin |
| Priority: | NOR | ||
| Version First Reported In: | 4.14.0 | ||
| Target Milestone: | --- | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 5.0.0 | |
| Sentry Crash Report: | |||
|
Description
Victor Engmark
2016-06-14 22:16:45 UTC
This is not an bug, the value from the GUI is calculated. This is the function:
drawdecoderwidget.cpp:161
/** Convert Exposure correction shift E.V value from GUI to Linear value needs by libraw decoder.
*/
double shiftExpoFromEvToLinear(double ev) const
{
// From GUI : -2.0EV => 0.25
// +3.0EV => 8.00
return (1.55*ev + 3.35);
}
The variable AutoZoom is Fit to Window. If reset on a restart, is correct.
Maik
How is it possible that reverting a valid user setting on restart is not a bug? The value from the config file for the GUI is calculated back again. The value 0.994 is 1.0 for the GUI. Maik (In reply to Maik Qualmann from comment #3) > The value from the config file for the GUI is calculated back again. The > value 0.994 is 1.0 for the GUI. Thanks; that's clear now. I was wondering about the following statement: > The variable AutoZoom is Fit to Window. If reset on a restart, is correct. @gilles: Why was this marked "works for me"? Were you not able to reproduce it? because it work as expected. We cannot reproduce the problem. Gilles Caulier |