Fix typo in tooltip (reported in T65555).

This commit is contained in:
Bastien Montagne 2019-06-06 11:58:14 +02:00
parent 3325b19ee7
commit 358c71cf2c
1 changed files with 3 additions and 4 deletions

View File

@ -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);