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:18:20 +0300
committerSybren A. Stüvel <sybren@blender.org>2022-07-05 13:18:20 +0300
commit935ef06fd13ada29f025ddaf04bf72761495d3e7 (patch)
tree6b44a837ba0f20fd4538771b50dfa67f568f5d5b /source
parentfdb854b9320d66297c8d1f03746b340b0798ed86 (diff)
NLA: fix punctuation of tooltips
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_nla.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_nla.c b/source/blender/makesrna/intern/rna_nla.c
index 5af3f94d075..f89744a8568 100644
--- a/source/blender/makesrna/intern/rna_nla.c
+++ b/source/blender/makesrna/intern/rna_nla.c
@@ -750,9 +750,9 @@ static void rna_def_nlastrip(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"Start Frame (manipulated from UI)",
- "Start frame of the NLA strip. Note : changing this value also updates the value of "
+ "Start frame of the NLA strip. Note: changing this value also updates the value of "
"the strip's end frame. If only the start frame should be changed, see the \"frame_start\" "
- "property instead.");
+ "property instead");
RNA_def_property_update(
prop, NC_ANIMATION | ND_NLA | NA_EDITED, "rna_NlaStrip_transform_update");
@@ -762,9 +762,9 @@ static void rna_def_nlastrip(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"End Frame (manipulated from UI)",
- "End frame of the NLA strip. Note : changing this value also updates the value of "
+ "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.");
+ "property instead");
RNA_def_property_update(
prop, NC_ANIMATION | ND_NLA | NA_EDITED, "rna_NlaStrip_transform_update");