Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-01-13 04:14:57 +0300
committerHans Goudey <h.goudey@me.com>2021-01-13 04:14:57 +0300
commitb9e02eace69ebc003f3598b0ba1bf0682f21c411 (patch)
tree9577cd6034194e36571af7a8d2ee47f74928b7f9 /source/blender/makesrna
parent6b5e4ad5899d87a183c4a3d5eb129f12d1aecd5c (diff)
UI: Clarify the property name of "F-Curve Visibility"
"F-Curve Visibility" is a bad UI label for a property that only affects the display of unselected F-Curves. This commit clarifies the property name by making it more specific with the word "Unselected", and by using the word "Opacity". "F-Curve" is redundant in the UI label anyway because it is included in the panel title. Resolves T82587 Differential Revision: https://developer.blender.org/D10027
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index e8a86f277f2..f5a11719912 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -5066,10 +5066,10 @@ static void rna_def_userdef_edit(BlenderRNA *brna)
prop = RNA_def_property(srna, "fcurve_unselected_alpha", PROP_FLOAT, PROP_FACTOR);
RNA_def_property_float_sdna(prop, NULL, "fcu_inactive_alpha");
RNA_def_property_range(prop, 0.001f, 1.0f);
- RNA_def_property_ui_text(
- prop,
- "Unselected F-Curve Visibility",
- "Amount that unselected F-Curves stand out from the background (Graph Editor)");
+ RNA_def_property_ui_text(prop,
+ "Unselected F-Curve Opacity",
+ "The opacity of unselected F-Curves against the "
+ "background of the Graph Editor");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL);
/* grease pencil */