From 28656293c624612a72224e0c7139471188c1203e Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Thu, 3 Feb 2022 18:27:42 -0600 Subject: Cleanup: Clang tidy, use braces Braces missed in b73d3b80fdcb72446 --- source/blender/editors/mesh/editmesh_select.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/mesh/editmesh_select.c') diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c index 6b2d56322fc..9396c9e53ea 100644 --- a/source/blender/editors/mesh/editmesh_select.c +++ b/source/blender/editors/mesh/editmesh_select.c @@ -1405,7 +1405,7 @@ static char *edbm_select_mode_get_description(struct bContext *UNUSED(C), if (RNA_struct_property_is_set(values, "type") && !RNA_struct_property_is_set(values, "use_extend") && !RNA_struct_property_is_set(values, "use_expand") && - !RNA_struct_property_is_set(values, "action")) + !RNA_struct_property_is_set(values, "action")) { switch (type) { case SCE_SELECT_VERTEX: return BLI_strdup( @@ -1418,6 +1418,7 @@ static char *edbm_select_mode_get_description(struct bContext *UNUSED(C), return BLI_strdup( N_("Face select - Shift-Click for multiple modes, Ctrl-Click expands selection")); } + } return NULL; } -- cgit v1.2.3