Compositor: Allow Glare node size below 6

This patch allows the size of the Glare node to be below 6. This is not
really a fix, but it is targeting the release branch because of concerns
about this limitation which din't exist for old EEVEE bloom.

Pull Request: https://projects.blender.org/blender/blender/pulls/124092
This commit is contained in:
Omar Emara 2024-07-03 12:30:42 +02:00 committed by Omar Emara
parent 30643fcf9b
commit 81e4fa29b8

@ -7428,7 +7428,7 @@ static void def_cmp_glare(StructRNA *srna)
prop = RNA_def_property(srna, "size", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, nullptr, "size");
RNA_def_property_range(prop, 6, 9);
RNA_def_property_range(prop, 1, 9);
RNA_def_property_ui_text(
prop,
"Size",