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:
authorCampbell Barton <ideasman42@gmail.com>2018-11-03 07:55:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-03 07:55:45 +0300
commita18927463c18eec24c74ce8c0b3c261ff5ace889 (patch)
tree11d5f4a55cef1fe985ebdf9d5a13e312b6b5467b /source/blender/editors/curve
parent4affea081a74f5b97240008e8e774edfc8ad35b4 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/editors/curve')
-rw-r--r--source/blender/editors/curve/editcurve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c
index 6331d9a3fac..784b8dc0d4e 100644
--- a/source/blender/editors/curve/editcurve.c
+++ b/source/blender/editors/curve/editcurve.c
@@ -2400,7 +2400,7 @@ static int switch_direction_exec(bContext *C, wmOperator *UNUSED(op))
Curve *cu = obedit->data;
if (!ED_curve_select_check(v3d, cu->editnurb)) {
- continue;
+ continue;
}
EditNurb *editnurb = cu->editnurb;
@@ -4462,7 +4462,7 @@ static int make_segment_exec(bContext *C, wmOperator *op)
if (!(nu1->flagu & CU_NURB_CYCLIC) && nu1->pntsu > 1) {
if (nu1->type == CU_BEZIER && BEZT_ISSEL_ANY_HIDDENHANDLES(v3d, nu1->bezt) &&
- BEZT_ISSEL_ANY_HIDDENHANDLES(v3d, &nu1->bezt[nu1->pntsu - 1]))
+ BEZT_ISSEL_ANY_HIDDENHANDLES(v3d, &nu1->bezt[nu1->pntsu - 1]))
{
nu1->flagu |= CU_NURB_CYCLIC;
BKE_nurb_handles_calc(nu1);