From 96cd8b94016691f2a874d46c1e2aff84ac8d2f28 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 29 Oct 2013 03:04:46 +0000 Subject: style cleanup --- source/blender/editors/armature/armature_edit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/armature/armature_edit.c') diff --git a/source/blender/editors/armature/armature_edit.c b/source/blender/editors/armature/armature_edit.c index e4d244f9277..0443afa0954 100644 --- a/source/blender/editors/armature/armature_edit.c +++ b/source/blender/editors/armature/armature_edit.c @@ -1074,13 +1074,13 @@ static int armature_split_exec(bContext *C, wmOperator *UNUSED(op)) bArmature *arm = (bArmature *)ob->data; EditBone *bone; - for (bone = arm->edbo->first; bone; bone = bone->next){ - if (bone->parent && (bone->flag & BONE_SELECTED) != (bone->parent->flag & BONE_SELECTED)){ + for (bone = arm->edbo->first; bone; bone = bone->next) { + if (bone->parent && (bone->flag & BONE_SELECTED) != (bone->parent->flag & BONE_SELECTED)) { bone->parent = NULL; bone->flag &= ~BONE_CONNECTED; } } - for (bone = arm->edbo->first; bone; bone = bone->next){ + for (bone = arm->edbo->first; bone; bone = bone->next) { ED_armature_ebone_select_set(bone, (bone->flag & BONE_SELECTED) != 0); } -- cgit v1.2.3