Working Profile > Gamma and Slope are ingnored if Profiled Lens Correction is active and any slider in the Exposure Tool is changed, fixes #4745

This commit is contained in:
heckflosse
2018-08-22 14:04:30 +02:00
parent 6d60d1093e
commit 140f9774d4
2 changed files with 2 additions and 2 deletions

View File

@@ -807,7 +807,7 @@ void Crop::update(int todo)
} }
if (todo & M_AUTOEXP) { if (todo & (M_AUTOEXP | M_RGBCURVE)) {
if (params.icm.workingTRC == "Custom") { //exec TRC IN free if (params.icm.workingTRC == "Custom") { //exec TRC IN free
Glib::ustring profile; Glib::ustring profile;
profile = params.icm.workingProfile; profile = params.icm.workingProfile;

View File

@@ -497,7 +497,7 @@ void ImProcCoordinator::updatePreviewImage(int todo, Crop* cropCall)
progress("Exposure curve & CIELAB conversion...", 100 * readyphase / numofphases); progress("Exposure curve & CIELAB conversion...", 100 * readyphase / numofphases);
if (todo & M_AUTOEXP) { if (todo & (M_AUTOEXP | M_RGBCURVE)) {
if (params.icm.workingTRC == "Custom") { //exec TRC IN free if (params.icm.workingTRC == "Custom") { //exec TRC IN free
Glib::ustring profile; Glib::ustring profile;
profile = params.icm.workingProfile; profile = params.icm.workingProfile;