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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-08-14 10:37:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-14 10:37:59 +0300
commit73234a9122666035592a8733f0df73beaf2e2a2d (patch)
treefe69cf90c6a3c9cffbc6c597f067d40359ecbbd9 /source
parent2044ee00c211cef95455d1fa5c3bd88a9c68c569 (diff)
Cleanup: vpaint face select de-selected twice
Diffstat (limited to 'source')
-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 899f1924222..d497a073f77 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);