app: "selection-feather-radius" max value is 5250.0.

This is a followup of previous commit. As well diagnosed by Anders, this
value relies on "gegl:gaussian-blur" operation's argument's range.

Also adding a comment to make it easier for future developers seeing
this value.
This commit is contained in:
Jehan 2024-08-18 18:32:36 +02:00
parent 16fc6093ee
commit 8eb910f934
1 changed files with 7 additions and 1 deletions

View File

@ -473,7 +473,13 @@ gimp_dialog_config_class_init (GimpDialogConfigClass *klass)
"selection-feather-radius",
"Selection feather radius",
SELECTION_FEATHER_RADIUS_BLURB,
0.0, 32767.0, 5.0,
/* NOTE: the max value is the max value of
* "std-dev-x|y" arguments in operation
* "gegl:gaussian-blur", multiplied by magic
* number 3.5 (see gimp_gegl_apply_feather())
* code).
*/
0.0, 5250.0, 5.0,
GIMP_PARAM_STATIC_STRINGS);
GIMP_CONFIG_PROP_BOOLEAN (object_class, PROP_SELECTION_FEATHER_EDGE_LOCK,