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>2021-11-09 16:55:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-11-09 16:55:38 +0300
commit65bbac6692af373e943fceeb26f6db9fc45c10cb (patch)
tree6c9d0095d7567970263e2fac7ea618ebae06aa32 /source/blender/editors/armature/armature_relations.c
parentfaeb2cc9005739efd6d58a7ab1e9170bf064b656 (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/editors/armature/armature_relations.c')
-rw-r--r--source/blender/editors/armature/armature_relations.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/editors/armature/armature_relations.c b/source/blender/editors/armature/armature_relations.c
index 0b96aec1d41..ac1c9418af9 100644
--- a/source/blender/editors/armature/armature_relations.c
+++ b/source/blender/editors/armature/armature_relations.c
@@ -1030,8 +1030,8 @@ static int armature_parent_clear_exec(bContext *C, wmOperator *op)
}
static int armature_parent_clear_invoke(bContext *C,
- wmOperator *UNUSED(op),
- const wmEvent *UNUSED(event))
+ wmOperator *UNUSED(op),
+ const wmEvent *UNUSED(event))
{
// False when no selected bones are connected to the active bone.
bool enable_disconnect = false;
@@ -1066,7 +1066,8 @@ static int armature_parent_clear_invoke(bContext *C,
uiLayout *row_disconnect = uiLayoutRow(layout, false);
uiLayoutSetEnabled(row_disconnect, enable_disconnect);
- uiItemEnumO(row_disconnect, "ARMATURE_OT_parent_clear", NULL, 0, "type", ARM_PAR_CLEAR_DISCONNECT);
+ uiItemEnumO(
+ row_disconnect, "ARMATURE_OT_parent_clear", NULL, 0, "type", ARM_PAR_CLEAR_DISCONNECT);
UI_popup_menu_end(C, pup);