mirror of
https://github.com/blender/blender
synced 2026-09-27 01:34:15 +03:00
Fix: UI: Rename "Bright" property to "Brightness"
"Bright" is an adjective, not a noun.
This commit is contained in:
parent
32bc206cc4
commit
2c55835c52
1 changed files with 1 additions and 1 deletions
|
|
@ -3750,7 +3750,7 @@ static void rna_def_brightcontrast_modifier(BlenderRNA *brna)
|
|||
prop = RNA_def_property(srna, "bright", PROP_FLOAT, PROP_UNSIGNED);
|
||||
RNA_def_property_float_sdna(prop, nullptr, "bright");
|
||||
RNA_def_property_range(prop, -FLT_MAX, FLT_MAX);
|
||||
RNA_def_property_ui_text(prop, "Bright", "Adjust the luminosity of the colors");
|
||||
RNA_def_property_ui_text(prop, "Brightness", "Adjust the luminosity of the colors");
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_SequenceModifier_update");
|
||||
|
||||
prop = RNA_def_property(srna, "contrast", PROP_FLOAT, PROP_UNSIGNED);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue