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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-09-26 13:51:36 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-09-26 15:41:36 +0300
commit39d855f8f32b5d0a2ed271ffcc613e191da90311 (patch)
tree95b9dbfc9b907fa1225cfa946b73d3fe11c6fdb4 /source/blender/editors/physics
parentb07db54cadaf4fd3eb73958dd963fc414085d9c0 (diff)
Fix particle lasso selecting non-visible keys
Even though hidden/faded keys are not supported in drawing in 2.8 yet, the selection tools should not be able to select non-visible keys. Spotted while looking into T70259 Reviewers: JacquesLucke Differential Revision: https://developer.blender.org/D5902
Diffstat (limited to 'source/blender/editors/physics')
-rw-r--r--source/blender/editors/physics/particle_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index 549c51d0d82..5999076dd9f 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -2296,7 +2296,7 @@ int PE_lasso_select(bContext *C, const int mcords[][2], const short moves, const
}
if (pset->selectmode == SCE_SELECT_POINT) {
- LOOP_KEYS
+ LOOP_VISIBLE_KEYS
{
copy_v3_v3(co, key->co);
mul_m4_v3(mat, co);