[Bf-blender-cvs] [9378debd26f] master: Docs: clarify wire-frame tool-tip

Campbell Barton noreply at git.blender.org
Tue Dec 24 12:59:27 CET 2019


Commit: 9378debd26f7b20babcc251bdef64563a56c6ae0
Author: Campbell Barton
Date:   Tue Dec 24 22:57:51 2019 +1100
Branches: master
https://developer.blender.org/rB9378debd26f7b20babcc251bdef64563a56c6ae0

Docs: clarify wire-frame tool-tip

===================================================================

M	source/blender/makesrna/intern/rna_space.c

===================================================================

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



More information about the Bf-blender-cvs mailing list