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-05-16 14:14:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-16 14:17:10 +0300
commitb019d8b2fe866c01b8edf187be1d01ede1891d0c (patch)
treedf7547f83b56971626c3df6e7a70fb21c1fb9819 /source/blender/editors/mesh
parent469f2ec17a7da5e82ea6d00f17167ef8cd0fce9b (diff)
Fix edit-mesh face-dot drawing check
Since 8a6414ed46f66 the old logic no longer applies.
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index c8d17e76344..63fff243cd8 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -217,18 +217,20 @@ static void edbm_select_pick_cache_free(void)
MEM_SAFE_FREE(base_array_index_offsets);
}
-static bool check_ob_drawface_dot(short select_mode, View3D *vd, char dt)
+static bool check_ob_drawface_dot(short select_mode, const View3D *v3d, char dt)
{
- if ((select_mode & SCE_SELECT_FACE) == 0) {
- return false;
- }
-
- /* if its drawing textures with zbuf sel, then don't draw dots */
- if (dt == OB_TEXTURE && vd->shading.type == OB_TEXTURE) {
- return false;
+ if (select_mode & SCE_SELECT_FACE) {
+ if (dt < OB_SOLID) {
+ return true;
+ }
+ if (v3d->overlay.edit_flag & V3D_OVERLAY_EDIT_FACE_DOT) {
+ return true;
+ }
+ if (XRAY_FLAG_ENABLED(v3d)) {
+ return true;
+ }
}
-
- return true;
+ return false;
}
static void edbm_select_pick_draw_bases(ViewContext *vc,