Commit: 358c71cf2c499139acd7a9105c6666bc9259a795 Author: Bastien Montagne Date: Thu Jun 6 11:58:14 2019 +0200 Branches: master https://developer.blender.org/rB358c71cf2c499139acd7a9105c6666bc9259a795
Fix typo in tooltip (reported in T65555). =================================================================== M source/blender/makesrna/intern/rna_space.c =================================================================== diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index ac658533617..098384e8d51 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -3856,10 +3856,9 @@ static void rna_def_space_view3d(BlenderRNA *brna) prop = RNA_def_property(srna, "use_local_camera", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "scenelock", 1); RNA_def_property_boolean_funcs(prop, NULL, "rna_SpaceView3D_use_local_camera_set"); - RNA_def_property_ui_text( - prop, - "Use Local Camera", - "Use a local camera in this view, rather than scene's active camera camera"); + RNA_def_property_ui_text(prop, + "Use Local Camera", + "Use a local camera in this view, rather than scene's active camera"); RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); prop = RNA_def_property(srna, "region_3d", PROP_POINTER, PROP_NONE); _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
