From 018f3dbf8533b30b136e6017423bcd2ab4ffb4cf Mon Sep 17 00:00:00 2001 From: Chris Blackbourn Date: Sun, 14 May 2023 11:11:51 +1200 Subject: [PATCH] Cleanup: format --- source/blender/makesrna/intern/rna_object.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 3df48a0e969..a8a3c9f9ff6 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -3796,8 +3796,7 @@ static void rna_def_object(BlenderRNA *brna) /* shape keys */ prop = RNA_def_property(srna, "show_only_shape_key", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "shapeflag", OB_SHAPE_LOCK); - RNA_def_property_ui_text( - prop, "Shape Key Lock", "Only show the active shape at full strength"); + RNA_def_property_ui_text(prop, "Shape Key Lock", "Only show the active shape at full strength"); RNA_def_property_ui_icon(prop, ICON_UNPINNED, 1); RNA_def_property_update(prop, 0, "rna_Object_internal_update_data");