when demosaic method 'none' is selected, use it for all zoom levels, Issue 2247 comment 7

This commit is contained in:
Ingo 2014-06-05 13:46:53 +02:00
parent 2fbf1be982
commit ada8f5ffe3

View File

@ -144,6 +144,7 @@ void ImProcCoordinator::updatePreviewImage (int todo, Crop* cropCall) {
RAWParams rp = params.raw; RAWParams rp = params.raw;
if( !highDetailNeeded ){ if( !highDetailNeeded ){
// if below 100% magnification, take a fast path // if below 100% magnification, take a fast path
if(rp.dmethod != RAWParams::methodstring[RAWParams::none])
rp.dmethod = RAWParams::methodstring[RAWParams::fast]; rp.dmethod = RAWParams::methodstring[RAWParams::fast];
rp.hotdeadpix_filt = false; rp.hotdeadpix_filt = false;
rp.ccSteps = 0; rp.ccSteps = 0;