diff --git a/release/scripts/ui/properties_data_camera.py b/release/scripts/ui/properties_data_camera.py index f7a7ec6b7a9..ce8f9f7ef59 100644 --- a/release/scripts/ui/properties_data_camera.py +++ b/release/scripts/ui/properties_data_camera.py @@ -69,7 +69,7 @@ class DATA_PT_camera(CameraButtonsPanel, bpy.types.Panel): col = split.column() if cam.type == 'PERSP': if cam.lens_unit == 'MILLIMETERS': - col.prop(cam, "lens", text="Angle") + col.prop(cam, "lens") elif cam.lens_unit == 'DEGREES': col.prop(cam, "angle") col = split.column() diff --git a/source/blender/makesrna/intern/rna_camera.c b/source/blender/makesrna/intern/rna_camera.c index 9d82c472882..b7d1c5ed8ba 100644 --- a/source/blender/makesrna/intern/rna_camera.c +++ b/source/blender/makesrna/intern/rna_camera.c @@ -99,7 +99,7 @@ void RNA_def_camera(BlenderRNA *brna) prop= RNA_def_property(srna, "lens", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "lens"); RNA_def_property_range(prop, 1.0f, 5000.0f); - RNA_def_property_ui_text(prop, "Lens", "Perspective Camera lens value in millimeters"); + RNA_def_property_ui_text(prop, "Focal Length", "Perspective Camera lens value in millimeters"); RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, NULL); prop= RNA_def_property(srna, "angle", PROP_FLOAT, PROP_ANGLE);