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:
authorCampbell Barton <ideasman42@gmail.com>2019-12-24 14:57:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-24 14:59:07 +0300
commit9378debd26f7b20babcc251bdef64563a56c6ae0 (patch)
tree26b17db788f874b8d2327a3a32d14f28d89c3dcc /source/blender/makesrna/intern/rna_space.c
parent2ba9572d9ee7bd028254578183b751ba5496b979 (diff)
Docs: clarify wire-frame tool-tip
Diffstat (limited to 'source/blender/makesrna/intern/rna_space.c')
-rw-r--r--source/blender/makesrna/intern/rna_space.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 3ed9d71e287..0f4f427819c 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -3486,8 +3486,10 @@ static void rna_def_space_view3d_overlay(BlenderRNA *brna)
prop = RNA_def_property(srna, "wireframe_threshold", PROP_FLOAT, PROP_FACTOR);
RNA_def_property_float_sdna(prop, NULL, "overlay.wireframe_threshold");
- RNA_def_property_ui_text(
- prop, "Wireframe Threshold", "Adjust the number of wires displayed (1 for all wires)");
+ RNA_def_property_ui_text(prop,
+ "Wireframe Threshold",
+ "Adjust the angle threshold for displaying edges "
+ "(1.0 for all)");
RNA_def_property_range(prop, 0.0f, 1.0f);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);