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:
authorYevgeny Makarov <jenkm>2021-02-24 22:25:44 +0300
committerHans Goudey <h.goudey@me.com>2021-02-24 22:25:44 +0300
commit4f247dba5ea99d9c3a3544c9dd302192cc1dab75 (patch)
tree93bd7b29e7769d1daa56a0eeade3f1e0c0320880 /source/blender/editors/space_sequencer
parent9a1b29e16c216c2827f28214d4f7af4ee072beec (diff)
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
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_add.c3
1 files changed, 2 insertions, 1 deletions
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);