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>2018-08-14 10:41:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-14 10:41:19 +0300
commitccc8d2ab42751b44eb54640842630354ff3902f9 (patch)
tree6d00b1f9440b46d5d488c5994561fafe2338870f /source/blender/editors/mesh/editface.c
parent644e2b3ffd238ea40298f7fdc3bb280f3d0f22eb (diff)
parent73234a9122666035592a8733f0df73beaf2e2a2d (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/editors/mesh/editface.c')
-rw-r--r--source/blender/editors/mesh/editface.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/editors/mesh/editface.c b/source/blender/editors/mesh/editface.c
index 405c19f1c1d..dde66b8aa13 100644
--- a/source/blender/editors/mesh/editface.c
+++ b/source/blender/editors/mesh/editface.c
@@ -414,12 +414,6 @@ int do_paintface_box_select(ViewContext *vc, rcti *rect, bool select, bool exten
if (extend == false && select) {
paintface_deselect_all_visible(vc->obact, SEL_DESELECT, false);
-
- mpoly = me->mpoly;
- for (a = 1; a <= me->totpoly; a++, mpoly++) {
- if ((mpoly->flag & ME_HIDE) == 0)
- mpoly->flag &= ~ME_FACE_SEL;
- }
}
ED_view3d_backbuf_validate(vc);