Skip to content

Commit

Permalink
tone equalizer: better default settings
Browse files Browse the repository at this point in the history
This is another attempt to provide more general masking settings so users may not need to bother at all with the masking tab in tone equalizer for at least 80% of their pictures.
  • Loading branch information
aurelienpierre authored and TurboGit committed Nov 3, 2019
1 parent da29772 commit a82f213
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/iop/toneequal.c
Original file line number Diff line number Diff line change
Expand Up @@ -1515,9 +1515,9 @@ void init(dt_iop_module_t *module)
.method = DT_TONEEQ_NORM_2,
.details = DT_TONEEQ_GUIDED,
.blending = 25.0f,
.feathering = 25.0f,
.contrast_boost = 0.0f,
.exposure_boost = 0.0f };
.feathering = 10.0f,
.contrast_boost = 3.0f,
.exposure_boost = -3.0f };
memcpy(module->params, &tmp, sizeof(dt_iop_toneequalizer_params_t));
memcpy(module->default_params, &tmp, sizeof(dt_iop_toneequalizer_params_t));
}
Expand Down

0 comments on commit a82f213

Please sign in to comment.