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/editors/transform/transform_generics.c')
-rw-r--r--source/blender/editors/transform/transform_generics.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c
index 557a6936f2f..47989f756e1 100644
--- a/source/blender/editors/transform/transform_generics.c
+++ b/source/blender/editors/transform/transform_generics.c
@@ -1467,9 +1467,9 @@ void calculateCenterMedian(TransInfo *t)
}
else {
/*
- All the selected elements are at the head of the array
- which means we can stop when it finds unselected data
- */
+ * All the selected elements are at the head of the array
+ * which means we can stop when it finds unselected data
+ */
break;
}
}
@@ -1493,9 +1493,9 @@ void calculateCenterBound(TransInfo *t)
}
else {
/*
- All the selected elements are at the head of the array
- which means we can stop when it finds unselected data
- */
+ * All the selected elements are at the head of the array
+ * which means we can stop when it finds unselected data
+ */
break;
}
}
@@ -1657,9 +1657,9 @@ void calculatePropRatio(TransInfo *t)
(connected == 0 &&
td->rdist > t->prop_size)) {
/*
- The elements are sorted according to their dist member in the array,
- that means we can stop when it finds one element outside of the propsize.
- */
+ * The elements are sorted according to their dist member in the array,
+ * that means we can stop when it finds one element outside of the propsize.
+ */
td->flag |= TD_NOACTION;
td->factor = 0.0f;
restoreElement(td);