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-10-07 09:49:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-07 09:49:22 +0300
commitee2e30683c1c4ebe14096d8e5f64a5a0099343e6 (patch)
tree9a24fc58ba8dd876a0fd29d37131942f70723ee0 /source/blender/editors/armature/armature_naming.c
parentdb1a04313c3223250b6e6ae1b3652f0a134b8239 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/editors/armature/armature_naming.c')
-rw-r--r--source/blender/editors/armature/armature_naming.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/armature/armature_naming.c b/source/blender/editors/armature/armature_naming.c
index 687dad4745e..15247399401 100644
--- a/source/blender/editors/armature/armature_naming.c
+++ b/source/blender/editors/armature/armature_naming.c
@@ -429,10 +429,10 @@ static int armature_flip_names_exec(bContext *C, wmOperator *op)
BLI_addtail(&bones_names, BLI_genericNodeN(ebone->name));
if (arm->flag & ARM_MIRROR_EDIT) {
- EditBone *flipbone = ED_armature_ebone_get_mirrored(arm->edbo, ebone);
- if ((flipbone) && !(flipbone->flag & BONE_SELECTED)) {
- BLI_addtail(&bones_names, BLI_genericNodeN(flipbone->name));
- }
+ EditBone *flipbone = ED_armature_ebone_get_mirrored(arm->edbo, ebone);
+ if ((flipbone) && !(flipbone->flag & BONE_SELECTED)) {
+ BLI_addtail(&bones_names, BLI_genericNodeN(flipbone->name));
+ }
}
}
}