[Digikam-devel] [Bug 123522] Minolta's RAW files (mrw) aren't show in the view window
Gilles Caulier
caulier.gilles at free.fr
Mon Mar 20 14:12:05 GMT 2006
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=123522
------- Additional Comments From caulier.gilles free fr 2006-03-20 15:12 -------
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 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