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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-06-06 12:58:14 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-06-06 12:58:14 +0300
commit358c71cf2c499139acd7a9105c6666bc9259a795 (patch)
treebfd69b0482443d676879f4123f31da001cd18c84 /source/blender
parent3325b19ee7fd0df489f818c59b619e0e84c74afb (diff)
Fix typo in tooltip (reported in T65555).
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_space.c7
1 files changed, 3 insertions, 4 deletions
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);