From 4f247dba5ea99d9c3a3544c9dd302192cc1dab75 Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Wed, 24 Feb 2021 13:25:44 -0600 Subject: UI: Cleanup and fix labels and descriptions in various places Changes include using proper and consistent grammar, simplifying phrasing, using correct terminology, and not including python API identifiers in tooltips. Differential Revision: https://developer.blender.org/D9924 --- source/blender/editors/space_sequencer/sequencer_add.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/space_sequencer') diff --git a/source/blender/editors/space_sequencer/sequencer_add.c b/source/blender/editors/space_sequencer/sequencer_add.c index e605cf4a889..a9033b98708 100644 --- a/source/blender/editors/space_sequencer/sequencer_add.c +++ b/source/blender/editors/space_sequencer/sequencer_add.c @@ -1144,6 +1144,7 @@ void SEQUENCER_OT_effect_strip_add(struct wmOperatorType *ot) "Type", "Sequencer effect type"); sequencer_generic_props__internal(ot, SEQPROP_STARTFRAME | SEQPROP_ENDFRAME); + /* Only used when strip is of the Color type. */ prop = RNA_def_float_color(ot->srna, "color", 3, @@ -1151,7 +1152,7 @@ void SEQUENCER_OT_effect_strip_add(struct wmOperatorType *ot) 0.0f, 1.0f, "Color", - "Initialize the strip with this color (only used when type='COLOR')", + "Initialize the strip with this color", 0.0f, 1.0f); RNA_def_property_subtype(prop, PROP_COLOR_GAMMA); -- cgit v1.2.3