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:
authorJacques Lucke <mail@jlucke.com>2019-03-05 15:13:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-05 15:16:30 +0300
commit5e999c249c9d8d317511b2f771d69fb5886c720c (patch)
treefc7b3921465c01400eceab89156a71df600a56a4 /source/blender/editors
parent2894e75121d78956f23dfd0f78855fa1c1a8d615 (diff)
Fix T62202: circle select does not work on hair points
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_view3d/view3d_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c
index 161b4e67c77..63308b5af21 100644
--- a/source/blender/editors/space_view3d/view3d_select.c
+++ b/source/blender/editors/space_view3d/view3d_select.c
@@ -3364,7 +3364,7 @@ static int view3d_circle_select_exec(bContext *C, wmOperator *op)
Object *obedit = vc.obedit;
if (obedit || BKE_paint_select_elem_test(obact) ||
- (obact && (obact->mode & (OB_MODE_PARTICLE_EDIT | OB_MODE_POSE))) )
+ (obact && (obact->mode & OB_MODE_POSE)))
{
view3d_operator_needs_opengl(C);