From 70ad18b94d1f8dde1b6ed746be37c5aa3b67c66b Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Fri, 5 Jun 2020 14:49:37 -0300 Subject: Fix T77335: Circle Select tool selects faces perpendicular to the view Internally the face dots are being drawn when the Edges option of the overlay (not the selection mode) is disabled. --- source/blender/draw/engines/select/select_draw_utils.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'source/blender/draw/engines') diff --git a/source/blender/draw/engines/select/select_draw_utils.c b/source/blender/draw/engines/select/select_draw_utils.c index 32bacdfab78..e9930dbdb30 100644 --- a/source/blender/draw/engines/select/select_draw_utils.c +++ b/source/blender/draw/engines/select/select_draw_utils.c @@ -92,10 +92,6 @@ static bool check_ob_drawface_dot(short select_mode, const View3D *v3d, eDrawTyp if (v3d->overlay.edit_flag & V3D_OVERLAY_EDIT_FACE_DOT) { return true; } - if ((v3d->overlay.edit_flag & V3D_OVERLAY_EDIT_EDGES) == 0) { - /* Since we can't deduce face selection when edges aren't visible - show dots. */ - return true; - } } return false; } -- cgit v1.2.3