Docs: clarify wire-frame tool-tip

This commit is contained in:
Campbell Barton
2019-12-24 22:57:51 +11:00
parent 2ba9572d9e
commit 9378debd26

View File

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