From 07e1b45928e2248c0062e18905d481f45e12e40f Mon Sep 17 00:00:00 2001 From: DrSlony Date: Wed, 15 Oct 2014 13:02:50 +0200 Subject: [PATCH] Let hot pixel filter work at all zoom levels so Auto Levels works correctly, issue 2535 --- rtengine/improccoordinator.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rtengine/improccoordinator.cc b/rtengine/improccoordinator.cc index 3413f6a49..1bafdc692 100644 --- a/rtengine/improccoordinator.cc +++ b/rtengine/improccoordinator.cc @@ -153,7 +153,9 @@ void ImProcCoordinator::updatePreviewImage (int todo, Crop* cropCall) { rp.bayersensor.ccSteps = 0; rp.xtranssensor.ccSteps = 0; - rp.deadPixelFilter = rp.hotPixelFilter = false; + /* Commented out the following line so that the hot pixel filter works at <100% zoom levels too, to fix issue 2535. + * rp.deadPixelFilter = rp.hotPixelFilter = false; + */ } progress ("Applying white balance, color correction & sRGB conversion...",100*readyphase/numofphases);