From 2c55835c520dc889a67edddf1693fb4bafac834f Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Tue, 12 Mar 2024 13:19:31 -0400 Subject: [PATCH] Fix: UI: Rename "Bright" property to "Brightness" "Bright" is an adjective, not a noun. --- source/blender/makesrna/intern/rna_sequencer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_sequencer.cc b/source/blender/makesrna/intern/rna_sequencer.cc index f3ecbd8be69..5bbba8de437 100644 --- a/source/blender/makesrna/intern/rna_sequencer.cc +++ b/source/blender/makesrna/intern/rna_sequencer.cc @@ -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);