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
path: root/source
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2022-07-05 13:20:59 +0300
committerSybren A. Stüvel <sybren@blender.org>2022-07-05 13:20:59 +0300
commit598a26fd8a59ae0b3012ce9577160fb68d681d17 (patch)
tree5a6f85a708587db2e2eb1d79599d68a13d51c09b /source
parent935ef06fd13ada29f025ddaf04bf72761495d3e7 (diff)
NLA: update description of `frame_end_ui` RNA property
The description incorrectly mentioned it changes the start frame as well, but it changes the strip's repeats or the action's end frame.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_nla.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_nla.c b/source/blender/makesrna/intern/rna_nla.c
index f89744a8568..bbe9ea13a0b 100644
--- a/source/blender/makesrna/intern/rna_nla.c
+++ b/source/blender/makesrna/intern/rna_nla.c
@@ -763,8 +763,8 @@ static void rna_def_nlastrip(BlenderRNA *brna)
prop,
"End Frame (manipulated from UI)",
"End frame of the NLA strip. Note: changing this value also updates the value of "
- "the strip's start frame. If only the end frame should be changed, see the \"frame_end\" "
- "property instead");
+ "the strip's repeats or its action's end frame. If only the end frame should be "
+ "changed, see the \"frame_end\" property instead");
RNA_def_property_update(
prop, NC_ANIMATION | ND_NLA | NA_EDITED, "rna_NlaStrip_transform_update");