From 669e7a2ae8c9a94dea994477dbd49f1d4e7e886b Mon Sep 17 00:00:00 2001 From: Desmis Date: Sun, 25 Aug 2019 08:07:17 +0200 Subject: [PATCH] Some adjustements to limits color correction grid --- rtengine/iplocallab.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtengine/iplocallab.cc b/rtengine/iplocallab.cc index a181b6b7c..65543ed32 100644 --- a/rtengine/iplocallab.cc +++ b/rtengine/iplocallab.cc @@ -9231,7 +9231,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o } - if (ctoning && bfw > 10 && bfh > 10) { + if (ctoning && bfw >= 6 && bfh >= 6) { if (lp.gridmet == 0) { bufcolcalca += bufcolcalcL * a_scale + a_base; bufcolcalcb += bufcolcalcL * b_scale + b_base; @@ -9275,7 +9275,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o bool execut = true; - if (ctoning && (bfw < 10 || bfh < 10)){ + if (ctoning && (bfw < 6 || bfh < 6)){ execut = false; }