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>2020-11-12 03:35:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-12 03:35:31 +0300
commite00bb5a4b730475fba8e2d14c9f2645af9b88f51 (patch)
tree08b142ff00a34ce70cefce7c15eb0d9fdcecaafa /source/blender/editors/space_outliner/outliner_sync.c
parent9e1e9516a08d94059b113fb3ac0d37b5ec3eaca0 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_sync.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_sync.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_outliner/outliner_sync.c b/source/blender/editors/space_outliner/outliner_sync.c
index 4591a545783..0f5c74a9168 100644
--- a/source/blender/editors/space_outliner/outliner_sync.c
+++ b/source/blender/editors/space_outliner/outliner_sync.c
@@ -257,9 +257,9 @@ static void outliner_select_sync_to_edit_bone(ViewLayer *view_layer,
add_selected_item(selected_ebones, ebone);
}
else if (!is_edit_bone_selected(selected_ebones, ebone)) {
- /* Dont flush to parent bone tip, synced selection is iterating the whole tree so deselecting
- * potential children with 'ED_armature_ebone_select_set(ebone, false)' would leave own tip
- * deselected. */
+ /* Don't flush to parent bone tip, synced selection is iterating the whole tree so
+ * deselecting potential children with `ED_armature_ebone_select_set(ebone, false)`
+ * would leave own tip deselected. */
ebone->flag &= ~(BONE_SELECTED | BONE_TIPSEL | BONE_ROOTSEL);
}
}