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-02-27 08:01:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 08:06:37 +0300
commitb21007757fd642a1c77ff7081832d93b3282a34b (patch)
treec07777b3d00441f84d02bd612ad55a7d0bea50e2 /source/blender/makesrna
parentcdda910fc321ab03d21434b5015dae41b8e7720b (diff)
DRW: disable wide edges when face-dots are used
Users who prefer to use face dot's don't get an advantage from drawing thicker wire. Requested by @ward
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_space.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index ccc18b49850..8a380514e1b 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2857,7 +2857,8 @@ static void rna_def_space_view3d_overlay(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_face_center", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "overlay.edit_flag", V3D_OVERLAY_EDIT_FACE_DOT);
- RNA_def_property_ui_text(prop, "Draw Face Center", "Display face center");
+ RNA_def_property_ui_text(prop, "Draw Face Center", "Display face center "
+ "(when disabled, edges display wider in edge mode)");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
prop = RNA_def_property(srna, "show_edge_crease", PROP_BOOLEAN, PROP_NONE);