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:
Diffstat (limited to 'source/blender/makesrna/intern/rna_curve.c')
-rw-r--r--source/blender/makesrna/intern/rna_curve.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index 6cca0c51988..86ed0f307c4 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -453,8 +453,8 @@ static void rna_Curve_bevelObject_set(PointerRNA *ptr,
Object *ob = (Object *)value.data;
if (ob) {
- /* if bevel object has got the save curve, as object, for which it's */
- /* set as bevobj, there could be infinity loop in displist calculation */
+ /* If bevel object has got the save curve, as object, for which it's set as bevobj,
+ * there could be infinity loop in #DispList calculation. */
if (ob->type == OB_CURVE && ob->data != cu) {
cu->bevobj = ob;
id_lib_extern((ID *)ob);
@@ -528,8 +528,8 @@ static void rna_Curve_taperObject_set(PointerRNA *ptr,
Object *ob = (Object *)value.data;
if (ob) {
- /* if taper object has got the save curve, as object, for which it's */
- /* set as bevobj, there could be infinity loop in displist calculation */
+ /* If taper object has got the save curve, as object, for which it's set as bevobj,
+ * there could be infinity loop in #DispList calculation. */
if (ob->type == OB_CURVE && ob->data != cu) {
cu->taperobj = ob;
id_lib_extern((ID *)ob);