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 <bastien@blender.org>2021-02-22 17:48:54 +0300
committerBastien Montagne <bastien@blender.org>2021-02-22 17:48:54 +0300
commitdd2e0150ae00b91a8e8da3def7aeb247ad7ff101 (patch)
tree910a86aca9131c3b7deb214b6d9554d9593b1a7e /source/blender/makesrna/intern/rna_scene.c
parentbc851700a61b49005d010e7cc6063d8a4f74c873 (diff)
Various UI messages fixes and tweaks.
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 7f3d470372a..0ad11aa9538 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -7277,16 +7277,16 @@ static void rna_def_scene_eevee(BlenderRNA *brna)
RNA_def_property_boolean_sdna(prop, NULL, "flag", SCE_EEVEE_DOF_JITTER);
RNA_def_property_ui_text(prop,
"Jitter Camera",
- "Jitter camera position to create accurate bluring "
+ "Jitter camera position to create accurate blurring "
"using render samples");
RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_LIBRARY);
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
prop = RNA_def_property(srna, "bokeh_overblur", PROP_FLOAT, PROP_PERCENTAGE);
RNA_def_property_ui_text(prop,
- "Overblur",
+ "Over-blur",
"Apply blur to each jittered sample to reduce "
- "undersampling artifacts");
+ "under-sampling artifacts");
RNA_def_property_range(prop, 0, 100);
RNA_def_property_ui_range(prop, 0.0f, 20.0f, 1, 1);
RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_LIBRARY);