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:
authorSybren A. Stüvel <sybren@blender.org>2022-07-05 12:34:40 +0300
committerSybren A. Stüvel <sybren@blender.org>2022-07-05 12:34:40 +0300
commitfdb854b9320d66297c8d1f03746b340b0798ed86 (patch)
treeb5780f5b98b7a9a64c070a93c1686dea6163e8a7 /source/blender/makesrna/intern/rna_nla.c
parentbd00324c264c07d7872071e9ef888b6b92e5645f (diff)
Cleanup: NLA, reformatting code
No functional changes.
Diffstat (limited to 'source/blender/makesrna/intern/rna_nla.c')
-rw-r--r--source/blender/makesrna/intern/rna_nla.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_nla.c b/source/blender/makesrna/intern/rna_nla.c
index f1aa9925a41..5af3f94d075 100644
--- a/source/blender/makesrna/intern/rna_nla.c
+++ b/source/blender/makesrna/intern/rna_nla.c
@@ -337,7 +337,6 @@ static void rna_NlaStrip_frame_end_ui_set(PointerRNA *ptr, float value)
else {
data->repeat -= (action_length_delta / actlen);
}
-
}
}
@@ -749,9 +748,9 @@ static void rna_def_nlastrip(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "start");
RNA_def_property_float_funcs(prop, NULL, "rna_NlaStrip_frame_start_ui_set", NULL);
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 "
+ prop,
+ "Start Frame (manipulated from UI)",
+ "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.");
RNA_def_property_update(
@@ -761,8 +760,8 @@ static void rna_def_nlastrip(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "end");
RNA_def_property_float_funcs(prop, NULL, "rna_NlaStrip_frame_end_ui_set", NULL);
RNA_def_property_ui_text(
- prop,
- "End Frame (manipulated from UI)",
+ 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.");