Summary: | automatic colorbalance and camera color balance checkboxes swapped | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Erik van der Velden <erikvandervelden> |
Component: | Setup-ImageEditor | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | caulier.gilles |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.9.0 | |
Sentry Crash Report: |
Description
Erik van der Velden
2006-07-07 00:38:38 UTC
SVN commit 559363 by cgilles: Fix swaped dcraw color balance settings BUG: 130381 M +2 -2 setupiofiles.cpp --- trunk/extragear/graphics/digikam/utilities/setup/setupiofiles.cpp #559362:559363 @@ -333,8 +333,8 @@ d->NRSigmaRange->setValue( config->readDoubleNumEntry("NRSigmaRange", 4.0) ); d->SuperCCDsecondarySensor->setChecked(config->readBoolEntry("SuperCCDsecondarySensor", false)); d->unclipColors->setChecked(config->readBoolEntry("UnclipColors", false)); - d->cameraColorBalance->setChecked(config->readBoolEntry("AutomaticColorBalance", true)); - d->automaticColorBalance->setChecked(config->readBoolEntry("CameraColorBalance", true)); + d->cameraColorBalance->setChecked(config->readBoolEntry("CameraColorBalance", true)); + d->automaticColorBalance->setChecked(config->readBoolEntry("AutomaticColorBalance", true)); d->RGBInterpolate4Colors->setChecked(config->readBoolEntry("RGBInterpolate4Colors", false)); d->JPEGcompression->setValue( config->readNumEntry("JPEGCompression", 75) ); |