[Digikam-devel] extragear/graphics/digikam/utilities/setup
Gilles Caulier
caulier.gilles at free.fr
Mon Mar 20 14:11:59 GMT 2006
SVN commit 520608 by cgilles:
digikam from trunk : Raw File decoding bugfix.
This is the most stupid bug to found : always enable raw decoding quality setting to use with dcraw in 0.9.0 BY DEFAULT ! ... else if you toogle between 0.8.x serie and 0.9.0, you will have a 0x0 image size into Image Editor...
CCMAIL: digikam-devel at kde.org
CCBUGS: 123522,
M +2 -1 setupiofiles.cpp
--- trunk/extragear/graphics/digikam/utilities/setup/setupiofiles.cpp #520607:520608
@@ -195,7 +195,7 @@
config->setGroup("ImageViewer Settings");
d->RAWquality->setValue( config->readNumEntry("RAWQuality", 0) );
- d->enableRAWQuality->setChecked(config->readBoolEntry("EnableRAWQuality", false));
+ d->enableRAWQuality->setChecked(config->readBoolEntry("EnableRAWQuality", true));
d->SuperCCDsecondarySensor->setChecked(config->readBoolEntry("SuperCCDsecondarySensor", false));
d->unclipColors->setChecked(config->readBoolEntry("UnclipColors", false));
d->cameraColorBalance->setChecked(config->readBoolEntry("AutomaticColorBalance", true));
@@ -204,6 +204,7 @@
d->JPEGcompression->setValue( config->readNumEntry("JPEGCompression", 75) );
d->PNGcompression->setValue( config->readNumEntry("PNGCompression", 9) );
d->TIFFcompression->setChecked(config->readBoolEntry("TIFFCompression", false));
+
d->RAWquality->setEnabled(d->enableRAWQuality->isChecked());
}
More information about the Digikam-devel
mailing list